14

IntelliJ 12.1.4 と Java 7 を使用して Maven 3.0.5 で jar を作成しようとするとエラーが発生します。IDE 経由でプロジェクトを問題なく実行できますが、パッケージ化しようとすると次のエラーが発生します。 .

私のPOMの関連セクション(から取得Maven By ExampleSonatypeは次のとおりです。

<build>
    <plugins>
        <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <configuration>
                <descriptorRefs>jar-with-dependencies</descriptorRefs>
            </configuration>
        </plugin>
    </plugins>
</build>

エラーは次のとおりです。

[ERROR] ...[33,55] error: diamond operator is not supported in -source 1.5
[ERROR] ...[207,7] error: try-with-resources is not supported in -source 1.5
[ERROR] ...[73,52] error: diamond operator is not supported in -source 1.5
[ERROR] ...[129,40] error: multi-catch statement is not supported in -source 1.5
[ERROR] ...[44,6] error: try-with-resources is not supported in -source 1.5
[ERROR] ...[28,39] error: diamond operator is not supported in -source 1.5
[ERROR] ...[31,7] error: try-with-resources is not supported in -source 1.5
[ERROR] ...[38,6] error: try-with-resources is not supported in -source 1.5
[ERROR] ...[34,41] error: diamond operator is not supported in -source 1.5
[ERROR] ...[77,43] error: diamond operator is not supported in -source 1.5
[ERROR] ...[84,6] error: try-with-resources is not supported in -source 1.5
[ERROR] ...[281,38] error: diamond operator is not supported in -source 1.5
[ERROR] ...[13,55] error: diamond operator is not supported in -source 1.5
[ERROR] ...[155,7] error: try-with-resources is not supported in -source 1.5

ソース 1.7 を使用するように Maven を取得するにはどうすればよいですか?

4

1 に答える 1

45

最初の部分に答えるには、次の行をPOMに追加して言語レベルを設定します

 <properties>
    <maven.compiler.source>1.7</maven.compiler.source>
    <maven.compiler.target>1.7</maven.compiler.target>
</properties>

これらの行を追加すると、jar を正常にビルドできますが、実行すると jar でno main manifest attributeエラーが発生します。

これは、次のように実行することで修正できますjava -cp app.jar com.somepackage.SomeClass

または、これを修正して実行可能なjarを作成するには、pomを次のようにします

 <build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-dependency-plugin</artifactId>
            <executions>
                <execution>
                    <id>copy-dependencies</id>
                    <phase>prepare-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>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <configuration>
                <archive>
                    <manifest>
                        <addClasspath>true</addClasspath>
                        <classpathPrefix>lib/</classpathPrefix>
                        <mainClass>fully.qualified.main</mainClass>
                    </manifest>
                </archive>
            </configuration>
        </plugin>
    </plugins>
</build>

jar-with-dependenciesこの pom は、依存関係をビルド ディレクトリにコピーしてから、含まれているライブラリを使用して jar を作成することにより、descriptorRef に関するいくつかの問題を解決します。

@André Aronsenの pom ソリューションに感謝します。

no main manifest エラーに関しては、この問題に関する多くの投稿があり、いくつかの解決策は機能しますが、いくつかは機能しません。この解決策は私にとってはうまくいくので、この投稿に含めて完成させました。

Java 7、Maven 3.0.5、および JetBrains IntelliJ IDEA 12.1.4 Ultimate でテスト済み。

于 2013-06-25T14:26:41.620 に答える