Maven发布插件使用构建版本命名文件

时间:2015-12-16 11:41:03

标签: java maven

当我执行maven版本时:执行生成的文件的名称,其构建版本含义为:artifactId.version。     我需要至少执行时生成的战争名称只是artifactId名称。

my pom is here:

<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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>me.tingz</groupId>
  <artifactId>dashboard</artifactId>
  <packaging>war</packaging>
  <version>15-SNAPSHOT</version>
  <name>dashboard Maven Webapp</name>
  <url>http://maven.apache.org</url>
  <distributionManagement>
        <repository>
            <id>google</id>
            <url>file:/home/ziv/Documents/dashboard/versions/</url>
        </repository>
    </distributionManagement>



  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>servlet-api</artifactId>
        <version>2.5</version>
    </dependency>

    <dependency>
        <groupId>org.mongodb</groupId>
        <artifactId>mongo-java-driver</artifactId>
        <version>3.0.4</version>
    </dependency>
    <dependency>
            <groupId>com.googlecode.json-simple</groupId>
            <artifactId>json-simple</artifactId>
            <version>1.1</version>
        </dependency>
  </dependencies>
  <build>

       <finalName>dashboard</finalName>
        <plugins>

        <!-- Release plugin Test!!!! -->
        <plugin>

            <artifactId>maven-release-plugin</artifactId>
            <version>2.5.2</version>
            <configuration>

                <tagBase>
                    file:/home/ziv/tag
                </tagBase>
                 <checkModificationExcludes>
            <checkModificationExclude>pom.xml</checkModificationExclude>
        </checkModificationExcludes>
            </configuration>
        </plugin>

        <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-scm-plugin</artifactId>
        <version>1.9.4</version>
        <configuration>
          <username>zivziv</username>

        </configuration>
      </plugin>

        <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.4</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>

  </build>
  <dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>com.googlecode.json-simple</groupId>
            <artifactId>json-simple</artifactId>
            <version>1.1</version>
        </dependency>
    </dependencies>
  </dependencyManagement>
  <scm>
        <connection>xxx</connection>
        <developerConnection>xxxd</developerConnection>
      <tag>dashboard-11</tag>

  </scm>
</project>

1 个答案:

答案 0 :(得分:1)

Maven Release插件不会生成&#34;任何文件。 Maven构建生命周期中涉及的其他插件,例如jar插件,生成文件。所以设置&#34; finalName&#34;正如你所做的那样应该做到这一点,至于#34;生成&#34;参与其中。

Release插件的作用是

  • 标记SCM中的代码
  • 将工件部署到存储库

后者总是要求Maven GAV - 而V则是版本。否则,Release将不是唯一的。因此,如果您希望Release插件将工件部署到存储库而其名称中没有版本,则您将失败。根据定义,这是不可能的。

你应该考虑不使用Release插件 - 毕竟,它是一个糟糕的插件。参见例如https://axelfontaine.com/blog/final-nail.html

考虑使用wagon-maven-plugin实现目标:http://www.mojohaus.org/wagon-maven-plugin/