標準のMavenを起動したばかりです-> Java Netbeans 7.4のアプリケーション。デフォルトで「App」クラス(mainメソッドがあります)が作成されました。プロジェクトの[プロパティ]-> [実行]に移動して設定しました。そのクラスをメインクラスとして作成し、プロジェクトをビルドしました。
プロジェクトのディレクトリに、いくつかのjarファイルが入った「target」フォルダがあります。それらのどれも実行可能なものではありません。問題を簡単に修正し、各ビルドの最後に実行可能jarを取得するにはどうすればよいですか?
ありがとう。
これは、NetbeansとMavenの間の統合が少し不足している可能性があります。
IDEで "Properties-> Run and set that Main Class"を実行しても、Mavenは生成されたjarのMANIFEST.MF
にメインクラスを設定しません。明示的に行う必要があります。 <mainClass>
のconfiguration
にmaven-jar-plugin
タグを追加して、メインクラスであるMavenに言います。
たとえば、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
があり、次のコマンドを実行できるはずです。
AppTest/target$Java -jar AppTest-1.0.0-SNAPSHOT.jar
Hello World!