这个项目不能添加,因为它没有使用Ant脚本生成JAR文件



在我的问题之后,我现在想到了这个问题。我用的是NetBeans 8.

我已经创建了一个Maven项目,我们叫它MyLibMaven(我使用New Project -> Maven -> Java application),我把我的库,我们叫它MyLib,移到这个Maven项目中。

现在,当我进入我的普通Java项目(让我们称之为MyProject)并尝试将mylibmmaven作为库添加到MyProject中时,Netbeans中会弹出这个窗口说:

This project cannot be added because it does not produce a JAR file using an Ant script

我在这里做错了什么?

这是我的pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.dwnz.my.lib</groupId>
    <artifactId>MyLib</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.7</maven.compiler.source>
        <maven.compiler.target>1.7</maven.compiler.target>
    </properties>
    <name>MyLib</name>
    <dependencies>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <version>17.0</version>
        </dependency>
    </dependencies>
</project>

/////////////////////////编辑 //////////////////////////////

我将我的项目移到maven项目中,并添加了mylibmmaven作为依赖项。但是现在当我尝试运行我的项目时,我得到了这个失败的错误:

--- exec-maven-plugin:1.2.1:exec (default-cli) @ TeseMaven ---
Could not load the icon: /view/images/enable-server-icon.png
Exception in thread "main" java.lang.NullPointerException
    at javax.swing.ImageIcon.<init>(ImageIcon.java:217)
    at view.toolbar.ToolBar.createIcon(ToolBar.java:171)
    at view.toolbar.ToolBar.<init>(ToolBar.java:53)
    at view.MainFrame.<init>(MainFrame.java:98)
    at view.MainFrame.newInstance(MainFrame.java:586)
    at view.Main.main(Main.java:98)
------------------------------------------------------------------------
------------------------------------------------------------------------
BUILD FAILURE
------------------------------------------------------------------------
Total time: 2.382s
Finished at: Wed Jul 23 02:13:22 BST 2014
Final Memory: 5M/126M
------------------------------------------------------------------------
Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:exec (default-cli) on project MyProjectMaven: Command execution failed. Process exited with an error: 1 (Exit value: 1) -> [Help 1]
To see the full stack trace of the errors, re-run Maven with the -e switch.
Re-run Maven using the -X switch to enable full debug logging.
For more information about the errors and possible solutions, please read the following articles:
[Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

你的主要问题是…

  1. 将Netbeans项目作为库添加到现有的Netbeans项目中只适用于"Netbeans项目";(ant)项目类型
  2. 你需要将Maven项目生成的Jar和它的所有依赖项添加到你的"netbeans"中。项目。因为"Netbeans(蚂蚁)项目"没有办法解析依赖项,您必须手动解析这些依赖项,并将每个Jar文件添加为库条目。
  3. 你的Maven项目只是为你的项目生成Jar,它不包括来自你的项目依赖的类/Jar。

你至少有两个基本的选择…

你可以…

指示Maven将所有依赖项作为构建过程的一部分。有(至少)两种方法可以做到这一点。您可以将所有的类包含到一个单独的Jar中,或者让Maven将所有的依赖项复制到指定的位置并更新class-path清单条目。

我个人更喜欢第二种选择,但这是我个人的事情。作为Maven构建过程的一部分,我包含了以下内容…

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-dependency-plugin</artifactId>
            <version>2.1</version>
            <executions>
                <execution>
                    <id>copy-dependencies</id>
                    <phase>package</phase>
                    <goals>
                        <goal>copy-dependencies</goal>
                    </goals>
                    <configuration>
                        <outputDirectory>${project.build.directory}/lib</outputDirectory>
                        <overWriteReleases>false</overWriteReleases>
                        <overWriteSnapshots>false</overWriteSnapshots>
                        <overWriteIfNewer>true</overWriteIfNewer>
                    </configuration>
                </execution>
            </executions>
        </plugin>
        <plugin>
            <artifactId>maven-jar-plugin</artifactId>
            <version>2.4</version>
            <configuration>
                <archive>
                    <manifest>
                        <addClasspath>true</addClasspath>
                        <classpathPrefix>lib/</classpathPrefix>
                        <!--mainClass>com.acme.MainClass</mainClass-->
                    </manifest>
                </archive>
            </configuration>
        </plugin>        

基本上,第一个插件将所有依赖jar复制到${project.build.directory}中的lib目录。这是我个人的事情,但是我不喜欢把Jar的内容合并到一个单独的"master"中。Jar,因为我倾向于拥有与我在项目中用作查找的同名资源…

第二个插件在manifest文件中包含class-path元素,这确保了依赖的jar包在运行时包含在类装入器查找路径中…

如果你想创建一个"single"使用Maven在Jar中包含依赖项

你可以…

使您的第二个项目成为Maven项目,并将您的第一个项目作为它的依赖项包含进去。然后Maven将自动为您解析所有依赖项。

相关内容

  • 没有找到相关文章

最新更新