gpt4 book ai didi

java - Maven:如果项目正在发布或未发布,则需要一种方法来更改属性或 URL 值

转载 作者:行者123 更新时间:2023-12-02 09:50:13 25 4
gpt4 key购买 nike

我们正在使用 JDeb maven 插件来构建我们的 one-jar'd 项目的 debian 包。

我们有两个 APT 存储库,一个用于预发布版本,一个用于发布。

我们使用 Wagon 插件上传 Artifact ,但我们无法弄清楚如何仅将版本发送到版本存储库,并将快照发送到预发布存储库。

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>wagon-maven-plugin</artifactId>
<executions>
<execution>
<id>upload-to-nexus</id>
<phase>deploy</phase>
<goals>
<goal>upload-single</goal>
</goals>
<configuration>
<serverId>xxx-all</serverId>
<fromFile>${project.build.directory}/${jdeb.name}</fromFile>
<url>https://xxx.xxx.xxx/repository/xxx-apt-pre</url>
</configuration>
</execution>
</executions>
</plugin>

当发布插件运行时,我们需要将上面的xxx-apt-pre更改为xxx-apt-dist。对于我的一生,我无法找到一种方法来做到这一点。

我最初尝试使用 build-helper 插件对短语 SNAPSHOT${project.build.finalName} 进行正则表达式,但它不会覆盖现有的属性。

欢迎任何想法。

最佳答案

嗯,解决方案并不完美,但正如我们在中西部所说的那样,完成了:

<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<executions>
<execution>
<id>add-dynamic-properties</id>
<phase>package</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<source>
<![CDATA[
if (project.version.contains('SNAPSHOT')) {
project.properties['aptRepoName'] = 'xxx-apt-pre'
} else {
project.properties['aptRepoName'] = 'xxx-apt-dist'
}
]]>
</source>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>wagon-maven-plugin</artifactId>
<executions>
<execution>
<id>upload-to-nexus</id>
<phase>deploy</phase>
<goals>
<goal>upload-single</goal>
</goals>
<configuration>
<serverId>xxx-all</serverId>
<fromFile>${project.build.directory}/${jdeb.name}</fromFile>
<url>https://xxx.xxx.xxx/repository/${aptRepoName}</url>
</configuration>
</execution>
</executions>
</plugin>

我希望这可以帮助某人或有一天有人发布更好的方法。

关于java - Maven:如果项目正在发布或未发布,则需要一种方法来更改属性或 URL 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56364966/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com