Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Wahlbrink2019-04-29 06:58:05 +0000
committerStephan Wahlbrink2019-04-29 07:15:34 +0000
commit611a8a06568318aca952e8be1e823475088d5155 (patch)
tree770d31261ff0e71a5b00467cd07ddda4c57cfe17
parente31522973d67855d0d1db733ce96f396403aec09 (diff)
downloadorg.eclipse.statet-611a8a06568318aca952e8be1e823475088d5155.tar.gz
org.eclipse.statet-611a8a06568318aca952e8be1e823475088d5155.tar.xz
org.eclipse.statet-611a8a06568318aca952e8be1e823475088d5155.zip
Bug 541741: [Releng] Add target id to repository name
-rw-r--r--releng/pom.xml1
-rw-r--r--releng/statet-repository/pom.xml4
2 files changed, 3 insertions, 2 deletions
diff --git a/releng/pom.xml b/releng/pom.xml
index 7e147be..20dbb7a 100644
--- a/releng/pom.xml
+++ b/releng/pom.xml
@@ -48,6 +48,7 @@
<maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
<statet.version>4.0.0</statet.version>
+ <statet.target.id>E201812</statet.target.id>
<statet.build.timestamp>${maven.build.timestamp}</statet.build.timestamp>
<statet.build.type></statet.build.type>
<statet.build.id>${statet.build.type}${statet.build.timestamp}</statet.build.id>
diff --git a/releng/statet-repository/pom.xml b/releng/statet-repository/pom.xml
index c7bd669..ef871a7 100644
--- a/releng/statet-repository/pom.xml
+++ b/releng/statet-repository/pom.xml
@@ -57,8 +57,8 @@
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<configuration>
- <repositoryName>Eclipse StatET ${statet.version} (Build ${statet.build.id})</repositoryName>
- <finalName>statet-repository-incubation-${statet.version}-${statet.build.id}</finalName>
+ <repositoryName>Eclipse StatET ${statet.version} (Target: ${statet.target.id}, Build ${statet.build.id})</repositoryName>
+ <finalName>statet-repository-${statet.target.id}-incubation-${statet.version}-${statet.build.id}</finalName>
</configuration>
</plugin>
</plugins>

Back to the top