Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2010-01-23 00:03:37 +0000
committerMatthias Sohn2010-01-23 00:29:21 +0000
commit407fe631aec08ec4b0f24462b3fa2cee67a83914 (patch)
tree48da86fc4eb8986fc3b718071e3c55f0f8b2222f /org.eclipse.jgit.junit/pom.xml
parent86e0c1e036d4a04e396947842d4760fb6efb23ea (diff)
downloadjgit-407fe631aec08ec4b0f24462b3fa2cee67a83914.tar.gz
jgit-407fe631aec08ec4b0f24462b3fa2cee67a83914.tar.xz
jgit-407fe631aec08ec4b0f24462b3fa2cee67a83914.zip
Use build timestamp as OSGi version qualifier
Translate the version qualifier using maven-antrun-plugin since we want manifest-first and currently cannot rely on Tycho for the JGit build. Introduce property for Eclipse p2 repository to enable builds against other Eclipse versions. Change-Id: I62c4e77ae91fe17f56c5a5338d53828d4e225395 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.junit/pom.xml')
-rw-r--r--org.eclipse.jgit.junit/pom.xml7
1 files changed, 6 insertions, 1 deletions
diff --git a/org.eclipse.jgit.junit/pom.xml b/org.eclipse.jgit.junit/pom.xml
index 095d21a2d0..e2973fa9d6 100644
--- a/org.eclipse.jgit.junit/pom.xml
+++ b/org.eclipse.jgit.junit/pom.xml
@@ -2,6 +2,7 @@
<!--
Copyright (C) 2009, Google Inc.
Copyright (C) 2008, Imran M Yousuf <imyousuf@smartitengineering.com>
+ Copyright (C) 2010, Matthias Sohn <matthias.sohn@sap.com>
and other copyright owners as documented in the project's IP log.
This program and the accompanying materials are made available
@@ -61,6 +62,10 @@
Utility classes to support JUnit testing of JGit applications.
</description>
+ <properties>
+ <translate-qualifier/>
+ </properties>
+
<dependencies>
<dependency>
<groupId>org.eclipse.jgit</groupId>
@@ -92,7 +97,7 @@
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
- <manifestFile>META-INF/MANIFEST.MF</manifestFile>
+ <manifestFile>${bundle-manifest}</manifestFile>
</archive>
</configuration>
</plugin>

Back to the top