Maven POMファイルにはいくつかの構成があり、セクションプラグインには、次のような構成のmaven Tomcatプラグインがあります。
<configuration>
<url>http://localhost:8080/manager/html</url>
<server>Tomcat</server>
</configuration>
そのキーを持つTomcat.propertiesなどのいくつかのプロパティファイルにURL設定をエクスポートしたい:
url=http://localhost:8080/manager/html
また、POMファイルでこのキーを読み戻すにはどうすればよいですか?
Mavenを使用すると、プロジェクトのPOMでプロパティを定義できます。これは、次のようなPOMファイルを使用して実行できます。
<project>
...
<properties>
<server.url>http://localhost:8080/manager/html</server.url>
</properties>
...
<build>
<plugins>
<plugin>
...
<configuration>
<url>${server.url}</url>
<server>Tomcat</server>
</configuration>
...
</plugin>
</plugins>
</build>
</project>
properties
タグ内でプロパティを指定せずに、コマンドラインから次のように値を渡すことができます。
mvn -Dserver.url=http://localhost:8080/manager/html some_maven_goal
コマンドラインからそれらを指定したくない場合、およびこれらのプロパティをプロジェクトPOMからプロパティファイルにさらに分離する必要がある場合、 Propertiesを使用する必要があります。 Mavenプラグイン 、実行しますread-project-properties
Mavenライフサイクルの 初期化フェーズの目標 。プラグインページの例は次のとおりです。
<project>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0-alpha-2</version>
<executions>
<!-- Associate the read-project-properties goal with the initialize phase, to read the properties file. -->
<execution>
<phase>initialize</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
<configuration>
<files>
<file>etc/config/dev.properties</file>
</files>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
以下で利用可能な完全な作業例: http://hg.defun.work/exp/file/tip/maven/properties
ここでpom.xmlの重要な部分:
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0-alpha-2</version>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
</execution>
</executions>
<configuration>
<files>
<file>dev.properties</file>
</files>
</configuration>
</plugin>
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<echo>project.build.sourceEncoding is "${project.build.sourceEncoding}"</echo>
<echo>foo is "${foo}"</echo>
<echo>with-spaces is "${with-spaces}"</echo>
<echo>existent.property is "${existent.property}"</echo>
<echo>nonexistent.property is "${nonexistent.property}"</echo>
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
あなたが見ることができるようにproperties-maven-pluginまだalpha段階で、それが私がMavenを嫌う理由ですビルドツールとして...
これらのプロパティはフィルタリングに使用できますが、pomファイルでは使用できないため、受け入れられた回答の手順を使用してファイルからプロパティをロードすることは実際にはできません。最小限のカウンターの例:
Pom.xmlで:
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0-alpha-2</version>
<executions>
<!-- Associate the read-project-properties goal with the initialize phase, to read the properties file. -->
<execution>
<!-- Apart from this test, the phase must be initialize -->
<phase>validate</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
<configuration>
<files>
<file>dev.properties</file>
</files>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<echo>Displaying value of properties</echo>
<echo>[foo] ${foo}</echo>
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
dev.properties
にある:
foo=bar
次に、コマンドmvn validate
を実行して出力を生成します。
[echo] Displaying value of properties
[echo] [foo] bar