mavenプロパティプラグインに関連する質問があります。 私の質問は多少その記事のアドバイスに従い How to read an external properties file in Mavenmavenプロパティプラグイン: "mvn deploy"を実行すると異常な動作が発生する
に関連して、私はそれが私はそれが何をしたいの大半を行うために取得するために管理しています。 私の設定は次のようになります。今
<dependency>
<groupId>org.kuali.maven.plugins</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0.8</version>
</dependency>
...
<plugin>
<groupId>org.kuali.maven.plugins</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0.8</version>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
<configuration>
<files>
<file>${basedir}/${environment}.properties</file>
</files>
</configuration>
</execution>
</executions>
</plugin>
次のように、私が持っている問題は次のとおりです。 私はこのように、中のものを格納するためのシンプルなリポジトリを設定している:mvn deploy
を実行している場合
<distributionManagement>
<repository>
<id>localRep</id>
<url>file:${localRepositoryLocation}</url>
</repository>
</distributionManagement>
$ {localRepositoryLocation}は置き換えられません。
[INFO] --- maven-deploy-plugin:2.5:deploy (default-deploy) @ SomeApp ---
Uploading: file:${localRepositoryLocation}/SomeApp/SomeApp/1.0.0/SomeApp-1.0.0.war
Uploaded: file:${localRepositoryLocation}/SomeApp/SomeApp/1.0.0/SomeApp-1.0.0.war (5754 KB at 18322.3 KB/sec)
Uploading: file:${localRepositoryLocation}/SomeApp/SomeApp/1.0.0/SomeApp-1.0.0.pom
Uploaded: file:${localRepositoryLocation}/SomeApp/SomeApp/1.0.0/SomeApp-1.0.0.pom (7 KB at 2051.1 KB/sec)
また、私はまた、モジョのバージョンでそのプラグインを使用し、それはまったく同じ行動を生み出すことに注意してください。 2つの異なるプロバイダの同じプラグインが同じ結果を持っている場合は、ここで間違っているものがあるはずです。
誰も助けることができますか?
種類について、
アンドレイ