我刚刚在netbeans7.4中启动了标准maven->java应用程序。它默认创建了“app”类(有main方法)。我还转到了project的properties->run并将该类设置为一个主类。然后我建立了这个项目。在项目的目录中,我得到了“target”文件夹,里面有几个jar。它们都不是可执行的。如何简单地解决问题并在每个构建结束时获得可执行jar?谢谢。
yzuktlbb1#
这可能是netbeans和maven之间缺乏集成。在ide中执行“properties->run and set that main class”不会使maven在 MANIFEST.MF 生成的jar:您必须通过添加 <mainClass> 标记到 configuration 的 maven-jar-plugin .例如,如果你的 pom.xml 是:
MANIFEST.MF
<mainClass>
configuration
maven-jar-plugin
pom.xml
<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.taringamberini</groupId> <artifactId>AppTest</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>jar</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <mainClass>com.taringamberini.apptest.App</mainClass> </manifest> </archive> </configuration> </plugin> </plugins> </build> </project>
比在 target 你可以找到 AppTest-1.0.0-SNAPSHOT.jar ,您应该能够运行:
target
AppTest-1.0.0-SNAPSHOT.jar
AppTest/target$java -jar AppTest-1.0.0-SNAPSHOT.jar Hello World!
1条答案
按热度按时间yzuktlbb1#
这可能是netbeans和maven之间缺乏集成。
在ide中执行“properties->run and set that main class”不会使maven在
MANIFEST.MF
生成的jar:您必须通过添加<mainClass>
标记到configuration
的maven-jar-plugin
.例如,如果你的
pom.xml
是:比在
target
你可以找到AppTest-1.0.0-SNAPSHOT.jar
,您应该能够运行: