一次构建具有不同分类器的多个工件

时间:2012-09-07 14:42:12

标签: maven maven-3

W希望我的maven项目一次生成具有不同分类器的三个工件。我知道我可以使用模块等生成它。这实际上是一个资源项目,我想为DEV,STAGE和PROD环境生成配置。

我想要的是运行mvn:install一次,并在我的回购邮件中有my.group:resources:1.0:devmy.group:resources:1.0:stagemy.group:resources:1.0:prod

2 个答案:

答案 0 :(得分:12)

如果您指定了多个插件执行和resource filtering,则可以在没有配置文件的情况下完成此操作。

${basedir}/src/main/filters中的每个版本创建一个属性文件(例如prod.properties,dev.properties),为每个环境保存适当的值。

开启资源过滤功能:

<resources>
  <resource>
    <directory>src/main/resources</directory>
    <filtering>true</filtering>
  </resource>
</resources>

现在添加资源插件执行。请注意不同的过滤器文件和输出目录。

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-resources-plugin</artifactId>
  <executions>
    <execution>
      <id>default-resources</id>
      <phase>process-resources</phase>
      <goals>
        <goal>resources</goal>
      </goals>
      <configuration>
        <outputDirectory>${project.build.outputDirectory}/dev</outputDirectory>
        <filters>
          <filter>${basedir}/src/main/filters/dev.properties</filter>
        </filters>
      </configuration>
    </execution>
    <execution>
      <id>prod</id>
      <phase>process-resources</phase>
      <goals>
        <goal>resources</goal>
      </goals>
      <configuration>
        <outputDirectory>${project.build.outputDirectory}/prod</outputDirectory>
        <filters>
          <filter>${basedir}/src/main/filters/prod.properties</filter>
        </filters>
      </configuration>
    </execution>
  </executions>
</plugin>

最后,jar插件;注意分类器和输入目录:

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-jar-plugin</artifactId>
  <executions>
    <execution>
      <id>default-jar</id>
      <phase>package</phase>
      <goals>
        <goal>jar</goal>
      </goals>
      <configuration>
        <classifier>dev</classifier>
        <classesDirectory>${project.build.outputDirectory}/dev</classesDirectory>
      </configuration>
    </execution>
    <execution>
      <id>jar-prod</id>
      <phase>package</phase>
      <goals>
        <goal>jar</goal>
      </goals>
      <configuration>
        <classifier>prod</classifier>
        <classesDirectory>${project.build.outputDirectory}/prod</classesDirectory>
      </configuration>
    </execution>
  </executions>
</plugin>

运行mvn clean install应该在包含devprod分类符的工件中生成经过适当过滤的资源。

在该示例中,我使用了default-resourcesdefault-jar的执行ID作为开发版本。如果没有这个,你在构建时也会获得一个未分类的jar工件。

答案 1 :(得分:3)

仅供参考 - 将版本号放在那里以确保您拥有支持自定义过滤器的版本。在maven 3中,我设置了这样的例子。没有版本它没有用。

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-resources-plugin</artifactId>
    <version>2.6</version>
    ...
</plugin>