gpt4 book ai didi

tycho - 如何更改插件和功能文件名中的限定符

转载 作者:行者123 更新时间:2023-12-01 02:27:09 28 4
gpt4 key购买 nike

我正在尝试重命名 eclipse-repository 模块的存储库文件夹中的工件。目前它们是自动生成的,如 ...1.0.0.v20130315-1927.jar .

我还没有找到任何有效的配置参数。我曾尝试在配置中使用限定符设置(参见 tycho-p2-repository-plugin),但它不起作用。

<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>development.statTool</groupId>
<artifactId>Application</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>

<groupId>development.statTool</groupId>
<artifactId>development.statTool.p2</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-repository</packaging>

<properties>
<tycho-version>0.16.0</tycho-version>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<version>${tycho-version}</version>

<configuration>
<qualifier>abcd</qualifier>
</configuration>
</plugin>
</plugins>
</build>
</project>

最佳答案

我的解决方案是使用 tycho-packaging-plugin。只有更改构建限定符的“缺点”需要重新构建存储库包含的所有模块。

这是我 parent pom.xml 的一部分:

<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-packaging-plugin</artifactId>
<version>${tycho.version}</version>
<dependencies>
<dependency>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-buildtimestamp-jgit</artifactId>
<version>${tycho-extras.version}</version>
</dependency>
</dependencies>
<configuration>
<strictBinIncludes>false</strictBinIncludes>
<format>'rev${rev}-'yyyyMMdd-HHmm</format>
</configuration>
</plugin>

关于tycho - 如何更改插件和功能文件名中的限定符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15441953/

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