我有一个相当古老的maven项目,它使用下面的插件来编写属性文件(根据我的理解)。我目前正在更新项目依赖项,并发现提供程序服务已被终止。
有没有更新的方法来做到这一点,一个示例pom.xml提取将是伟大的!!!
谢谢,
亚当
<profiles>
<profile>
<id>tests</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0-alpha-2</version>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>write-project-properties</goal>
</goals>
<configuration>
<outputFile>${project.build.outputDirectory}/appversion.properties</outputFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>