maven的新手,但是克服了令人沮丧的学习曲线......
我有一个简单的pom文件,它读取属性文件并写出配置文件。我使用'properties-maven-plugin'和
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<id>read-install-properties</id>
<phase>generate-resources</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
</phase>
</execution>
</executions>
.... .... 当我在我的属性文件中添加这样的行时:
C = ${A} + ${B}
并运行mvn mvn install -f pom2.xml -DA = 1 -DB = 2
我在输出文件中看到了这一点:
C = 1 + 2
正如我所料。
当我将行更改为
时C = ${A} + ${B} + ${B}
我希望看到这个:
C = 1 + 2 + 2
但相反,我得到了一个
Circular property definition: C=${A} + ${B} + ${B} -> A=1 -> B=2 -> B=2 -> [Help 1]
**问题* 8:我在这里误解了什么?
我目前正在仔细查看插件的文档,看看我是否遗漏了一些明显的东西。
答案 0 :(得分:3)
您遇到了properties-maven-plugin
的错误,该错误今年早些时候已经reported,但修复程序尚未成为新版本的一部分:
无根据的“循环财产定义”#27
确实,有一个简单的pom.xml
,内容如下:
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<id>read-install-properties</id>
<phase>validate</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
<configuration>
<files>
<file>src/main/resources/build.properties</file>
</files>
</configuration>
</execution>
<execution>
<id>write-install-properties</id>
<phase>validate</phase>
<goals>
<goal>write-project-properties</goal>
</goals>
<configuration>
<outputFile>target/build.properties</outputFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
src/main/resources/build.properties
具有简单内容:
C = ${A} + ${B} + ${B}
将Maven称为:
mvn clean validate -DA=1 -DB=2
会导致
[ERROR] Failed to execute goal org.codehaus.mojo:properties-maven-plugin:1.0.0:read-project-properties (read-install-properties) on pr
oject sample: Circular property definition: C=${A} + ${B} + ${B} -> A=1 -> B=2 -> B=2 -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
相关组件是CircularDefinitionPreventer
类,尚未通过插件的最新SNAPSHOT版本修复。
您可以按照以下方式再次测试:将以下部分添加到您的pom文件中:
<pluginRepositories>
<pluginRepository>
<id>apache.snapshots</id>
<name>Maven Plugin Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
将插件版本更改为1.0.1-SNAPSHOT
。这将允许您使用插件的最新SNAPSHOT版本,但尚未提供修复(在撰写本文时)。
相反的问题不是通过Maven filtering出现的。拥有以下示例POM代码段:
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
与上面的文件相同并执行
mvn clean package -DA=1 -DB2
我们将生成的.jar
文件作为内容包含的build.properties
文件的一部分:
C = 1 + 2 + 2