私はとNexusを持っており、というリポジトリを持っています。どのように私のバージョンをsnapshot-x.xという名前のフォルダにグループ化できますか?Nexus group by SNAPSHOT
レポジトリにはsnapshot
タイプがあります。ユーザーの展開にはすべての特権があります。 mvn versions:set -DnewVersion=$VERSION
とmvn clean deploy -B -Pbuild -Dbuild.version=$VERSION
私のsettings.xml仕事だけレポを解放するよう;-(
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
</server>
</servers>
<profiles>
<profile>
<id>build</id>
<repositories>
<repository>
<id>nexus-repo</id>
<name>Nexus repo</name>
<url>http://<MY-HOST>:8081:8081/nexus/content/groups/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>nexus-repo</id>
<name>Nexus repo </name>
<url>http://<MY-HOST>:8081/nexus/content/groups/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<properties>
<altDeploymentRepository>
-DaltDeploymentRepository=builds::default::http://deployment:<MY_PASS>@<MY-HOST>:8081/content/repositories/builds
</altDeploymentRepository>
</properties>
</profile>
</profiles>
</settings>
<activeProfiles>
<activeProfile>build</activeProfile>
</activeProfiles>
私はリポジトリの内部形式を変更することはできません。さらに、バージョンが独立していなければならないので、バージョンによって異なるジャーをグループ化することは奇妙に思えます(1つは変更され、他は同じままである可能性があります)。アイデアを説明することができますか(リポジトリを再構築する理由) –