コマンドラインからpom.xml
ファイルのプロパティに引数を渡すことは可能ですか?例えば私は走るmvn ... argument
そしてpom.xmlで
<properties>
<myproperty> here should add argument from command line</myproperty>
</properties>
お手伝いありがとう。
コマンドラインからpom.xml
ファイルのプロパティに引数を渡すことは可能ですか?例えば私は走るmvn ... argument
そしてpom.xmlで
<properties>
<myproperty> here should add argument from command line</myproperty>
</properties>
お手伝いありがとう。
回答:
プロパティの例については、次のようにします。
mvn install "-Dmyproperty=my property from command line"
プロパティ定義全体を引用していることに注意してください。プロパティにスペースが含まれている場合に必要になります。
mvn clean install "-Dprop1=value1" "-Dprop2=value2"
pom.xmlの内部
<project>
.....
<profiles>
<profile>
<id>linux64</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<build_os>linux</build_os>
<build_ws>gtk</build_ws>
<build_arch>x86_64</build_arch>
</properties>
</profile>
<profile>
<id>win64</id>
<activation>
<property>
<name>env</name>
<value>win64</value>
</property>
</activation>
<properties>
<build_os>win32</build_os>
<build_ws>win32</build_ws>
<build_arch>x86_64</build_arch>
</properties>
</profile>
</profiles>
.....
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho.version}</version>
<configuration>
<environments>
<environment>
<os>${build_os}</os>
<ws>${build_ws}</ws>
<arch>${build_arch}</arch>
</environment>
</environments>
</configuration>
</plugin>
.....
この例では、引数なしでpomを実行すると、mvn clean install
デフォルトのプロファイルが実行されます。
で実行した場合 mvn -Denv=win64 clean install
win64プロファイルが実行されます。
http://maven.apache.org/guides/introduction/introduction-to-profiles.htmlを参照してください
プロパティプラグインを使用してこれを解決しました。
プロパティはpomで定義され、my.propertiesファイルに書き出され、Javaコードからアクセスできます。
私の場合、このプロパティファイルにアクセスする必要があるのはテストコードなので、pomでプロパティファイルはmavenのtestOutputDirectoryに書き込まれます。
<configuration>
<outputFile>${project.build.testOutputDirectory}/my.properties</outputFile>
</configuration>
アプリのコードからプロパティにアクセスできるようにするには、outputDirectoryを使用します。
<configuration>
<outputFile>${project.build.outputDirectory}/my.properties</outputFile>
</configuration>
より完全な例を探している人(これを機能させるには、pomファイル内の他の場所でプロパティタグを取得する機能にプロパティタグの名前がどのように影響するかがわからなかったので、少し手間がかかりました)の場合、pomは次のようになります。
<dependencies>
<dependency>
...
</dependency>
</dependencies>
<properties>
<app.env>${app.env}</app.env>
<app.port>${app.port}</app.port>
<app.domain>${app.domain}</app.domain>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>write-project-properties</goal>
</goals>
<configuration>
<outputFile>${project.build.testOutputDirectory}/my.properties</outputFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
そしてコマンドラインで:
mvn clean test -Dapp.env=LOCAL -Dapp.domain=localhost -Dapp.port=9901
したがって、これらのプロパティはJavaコードからアクセスできます。
java.io.InputStream inputStream = Thread.currentThread().getContextClassLoader().getResourceAsStream("my.properties");
java.util.Properties properties = new Properties();
properties.load(inputStream);
appPort = properties.getProperty("app.port");
appDomain = properties.getProperty("app.domain");
mvn clean package -DpropEnv=PROD
次に、POM.xmlでこのように使用します
<properties>
<myproperty>${propEnv}</myproperty>
</properties>