控制jar工件的maven最终名称

Max*_*ler 156 java build-automation maven-2 jar

我正在尝试在我们的超级pom中定义一个属性,它将被所有子项目用作生成的工件的目标.

为此,我考虑使用project/build/finalName但这似乎不起作用,即使对于简单的poms:

命令

 mvn archetype:create \ 
   -DarchetypeGroupId=org.apache.maven.archetypes \
   -DgroupId=com.mycompany.app \
   -DartifactId=my-app
Run Code Online (Sandbox Code Playgroud)

POM

<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.mycompany.app</groupId>
  <artifactId>my-app</artifactId>
  <version>1.0-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>my-app</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <build>
        <finalName>${project.name}-testing</finalName>
  </build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
Run Code Online (Sandbox Code Playgroud)
$ mvn install

[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Building my-app
[INFO]    task-segment: [install]
[INFO] ------------------------------------------------------------------------
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /tmp/mvn_test/my-app/src/main/resources
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Nothing to compile - all classes are up to date
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /tmp/mvn_test/my-app/src/test/resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Nothing to compile - all classes are up to date
[INFO] [surefire:test {execution: default-test}]
[INFO] Surefire report directory: /tmp/mvn_test/my-app/target/surefire-reports

-------------------------------------------------------
 T E S T S
-------------------------------------------------------
Running com.mycompany.app.AppTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.024 sec

Results :

Tests run: 1, Failures: 0, Errors: 0, Skipped: 0

[INFO] [jar:jar {execution: default-jar}]
[INFO] [install:install {execution: default-install}]
[INFO] Installing /tmp/mvn_test/my-app/target/my-app-testing.jar to /home/maxim/.m2/repository/com/mycompany/app/my-app/1.0-SNAPSHOT/my-app-1.0-SNAPSHOT.jar
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESSFUL
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2 seconds
[INFO] Finished at: Sun Nov 21 18:37:02 IST 2010
[INFO] Final Memory: 17M/162M
[INFO] ------------------------------------------------------------------------
Run Code Online (Sandbox Code Playgroud)

我希望字符串"testing"会出现在生成的工件名称的某处.

我是否误解了"finalName"的目的?

谢谢你,马克西姆.

Chr*_*lma 260

finalName在插件配置部分中设置了该属性:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-jar-plugin</artifactId>
    <version>2.3.2</version>
    <configuration>
        <finalName>myJar</finalName>                   
    </configuration>
</plugin>       
Run Code Online (Sandbox Code Playgroud)

官方文档中所示.

更新:

对于Maven> = 3

基于Matthew的评论,您现在可以这样做:

 <packaging>jar</packaging>
 <build>
   <finalName>WhatEverYouLikey</finalName>
 </build>
Run Code Online (Sandbox Code Playgroud)

查看错误报告/文档.

  • 从版本3.0.0开始,``finalName``配置已被删除.然而OP的方法应该有效.请参阅https://issues.apache.org/jira/browse/MJAR-233 (12认同)
  • 您可以在命令行中指定“ finalName”吗?(-Djar.finalName = x)似乎不起作用。 (2认同)
  • 使用 Maven 插件,不必包含版本。我认为它会选择最新的。如果有人想知道,jar 名称*没有*文件后缀,因此**没有**“myJar.jar”,而是“myJar”,因为它在示例中正确显示。 (2认同)

JBC*_*BCP 41

所有提供的答案都比必要的更复杂.假设您正在构建一个jar文件,您只需要<jar.finalName>在您的<properties>部分添加一个标记:

<properties>
    <jar.finalName>${project.name}</jar.finalName>
</properties>
Run Code Online (Sandbox Code Playgroud)

这将生成一个jar:

project/target/${project.name}.jar
Run Code Online (Sandbox Code Playgroud)

这是在文档中 - 请注意User Property:

finalName:
Name of the generated JAR.
Type: java.lang.String
Required: No
User Property: jar.finalName
Default: ${project.build.finalName}
Run Code Online (Sandbox Code Playgroud)

命令行用法

您还应该能够在命令行上使用此选项:

mvn -Djar.finalName=myCustomName ...
Run Code Online (Sandbox Code Playgroud)

你应该得到myCustomName.jar,虽然我还没有测试过.

  • 使用Spring Boot,这不起作用/sf/answers/1014345951/.而`<jar.finalName> foo </jar.finalName>`创建两个jar:一个包含名为`foo - $ {project.version} .jar`的依赖项的可执行jar和另一个只包含名为`$ {project的项目的jar .name} - $ {project.version} .jar`,`<build> <finalName> foo </ finalName> </ build>`只创建包含名为`foo.jar的依赖项的可执行jar (6认同)
  • 有效,我同意这是简单的答案,您甚至可以执行 &lt;jar.finalName&gt;${groupId}-${artifactId}-${version}&lt;/jar.finalName&gt; (2认同)

dir*_*ira 36

@Maxim
尝试这个......

的pom.xml

 <groupId>org.opensource</groupId>
 <artifactId>base</artifactId>
 <version>1.0.0.SNAPSHOT</version>

  ..............
<properties>
    <my.version>4.0.8.8</my.version>
</properties>

<build>
    <finalName>my-base-project</finalName>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-install-plugin</artifactId>
            <version>2.3.1</version>
            <executions>
                <execution>
                    <goals>
                        <goal>install-file</goal>
                    </goals>
                    <phase>install</phase>
                    <configuration>
                        <file>${project.build.finalName}.${project.packaging}</file>
                        <generatePom>false</generatePom>
                        <pomFile>pom.xml</pomFile>
                        <version>${my.version}</version>
                    </configuration>
                </execution>
            </executions>
        </plugin>
</plugins>
</build>
Run Code Online (Sandbox Code Playgroud)

Commnad mvn clean install

产量

[INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ base ---
[INFO] Building jar: D:\dev\project\base\target\my-base-project.jar
[INFO]
[INFO] --- maven-install-plugin:2.3.1:install (default-install) @ base ---
[INFO] Installing D:\dev\project\base\target\my-base-project.jar to H:\dev\.m2\repository\org\opensource\base\1.0.0.SNAPSHOT\base-1.0.0.SNAPSHOT.jar
[INFO] Installing D:\dev\project\base\pom.xml to H:\dev\.m2\repository\org\opensource\base\1.0.0.SNAPSHOT\base-1.0.0.SNAPSHOT.pom
[INFO]
[INFO] --- maven-install-plugin:2.3.1:install-file (default) @ base ---
[INFO] Installing D:\dev\project\base\my-base-project.jar to H:\dev\.m2\repository\org\opensource\base\4.0.8.8\base-4.0.8.8.jar
[INFO] Installing D:\dev\project\base\pom.xml to H:\dev\.m2\repository\org\opensource\base\4.0.8.8\base-4.0.8.8.pom
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
Run Code Online (Sandbox Code Playgroud)


参考

  • 就我而言,<file>必须是<file> $ {build.directory}/$ {project.build.finalName}.$ {project.packaging} </ file> (5认同)
  • 将finalName标记直接放在maven-install-plugin VS maven-jar-plugin中有什么区别? (2认同)

小智 18

在包阶段,插件允许通过文件映射配置导入的文件名:

行家入耳式插件

http://maven.apache.org/plugins/maven-ear-plugin/examples/customize-file-name-mapping.html

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-ear-plugin</artifactId>
    <version>2.7</version>
    <configuration>
       [...]
        <fileNameMapping>full</fileNameMapping>
    </configuration>
</plugin>
Run Code Online (Sandbox Code Playgroud)

http://maven.apache.org/plugins/maven-war-plugin/war-mojo.html#outputFileNameMapping

如果您已将版本配置为通过配置文件或其他内容进行"测试",则这适用于war包:

Maven的战争插件

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-war-plugin</artifactId>
    <version>2.2</version>
    <configuration>
        <encoding>UTF-8</encoding>                        
        <outputFileNameMapping>@{groupId}@-@{artifactId}@-@{baseVersion}@@{dashClassifier?}@.@{extension}@</outputFileNameMapping>
    </configuration>
</plugin>
Run Code Online (Sandbox Code Playgroud)


Ole*_*lov 8

这适合我

mvn jar:jar -Djar.finalName=custom-jar-name
Run Code Online (Sandbox Code Playgroud)