Mavenアセンブリプラグインによって生成された戦争名を変更するにはどうすればよいですか?


87

名前を1.0.snapshot-jar-with-dependencies別の名前に変更するにはどうすればよいですか。以下は私のPOMの内容です。

<build>
    <plugins>
        <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>2.2-beta-5</version>
            <configuration>
                <archive>
                    <manifest>
                        <mainClass>com.package.example.MainClass</mainClass>
                    </manifest>
                </archive>
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>
            </configuration>
        </plugin>
    </plugins>
</build>

回答:


168

の構成で以下を使用しますmaven-assembly-plugin

<configuration>
  <finalName>custom-name</finalName>
  <appendAssemblyId>false</appendAssemblyId>
</configuration>

詳細については、assembly:singlemojoの公式ドキュメントをご覧ください。


8
アセンブリ:アセンブリは非推奨になりました。アセンブリ:シングル
lordB8r 2014

また、「dir」形式記述子でassembly:singleを使用する場合にも非常に便利です。「。」を使用する 指定されたoutputdirが真のoutputdirになることを意味します
Peter Kahn

88

これfinalNameは、pomでプロパティを指定することで実現できます。

<build>
    <finalName>something-else</finalName>
    ...
</build>

4
再び、これが機能した何か
-else

7
実際、<appendAssemblyId>false</appendAssemblyId>Pascalが提案したタグが必要になります。
雷雨2014

この名前には接尾辞が追加されることに注意してください。
マルティン・セラーノ

5

依存関係のあるJARをパッケージ化する場合、は機能しません。依存関係プラグインを使用して修正します。

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-dependency-plugin</artifactId>
            <executions>
                <execution>
                    <id>copy</id>
                    <phase>package</phase>
                    <goals>
                        <goal>copy</goal>
                    </goals>
                    <configuration>
                        <artifactItems>
                            <artifactItem>
                                <groupId>project.group.id</groupId>
                                <artifactId>artifact-id</artifactId>
                                <version>0.0.1-SNAPSHOT</version>
                                <type>jar</type>
                                <overWrite>true</overWrite>
                                <outputDirectory>${basedir}/some/dir</outputDirectory>
                                <destFileName>custom-name.jar</destFileName>
                            </artifactItem>
                        </artifactItems>
                        <overWriteReleases>false</overWriteReleases>
                        <overWriteSnapshots>true</overWriteSnapshots>
                    </configuration>
                </execution>
            </executions>
        </plugin>
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.