I am trying to rename my artifacts in the repository folder of my eclipse-repository module. At the moment, they are automatically generated, like ... 1.0.0.v20130315-1927.jar .
I did not find any configuration option that works. I tried using the qualifier setting in the configuration (see tycho-p2-repository-plugin ), but this will not work.
<?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>
source share