Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index c6037247..1cf3197e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -32,6 +32,9 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <!-- Current target version of m2e, used to deduce some URL at verify and publish.
+ This should usually be sync'd with the main feature version -->
+ <m2e.version>1.15.0</m2e.version>
<m2e-maven-runtime.version>1.15.0-SNAPSHOT</m2e-maven-runtime.version>
<tycho-version>1.6.0</tycho-version>
@@ -246,6 +249,7 @@
<generate>true</generate>
</sourceReferences>
<jgit.ignore>pom.xml</jgit.ignore>
+ <timestampProvider>jgit</timestampProvider>
</configuration>
<dependencies>
<dependency>
@@ -253,6 +257,11 @@
<artifactId>tycho-sourceref-jgit</artifactId>
<version>${tycho-extras-version}</version>
</dependency>
+ <dependency>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-buildtimestamp-jgit</artifactId>
+ <version>${tycho-extras-version}</version>
+ </dependency>
</dependencies>
</plugin>
<plugin>
@@ -271,6 +280,12 @@
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-plugin</artifactId>
<version>${tycho-version}</version>
+ <configuration>
+ <baselineRepositories>
+ <repository><url>https://download.eclipse.org/technology/m2e/releases/</url></repository>
+ <repository><url>http://download.eclipse.org/technology/m2e/snapshots/${m2e.version}/latest/</url></repository>
+ </baselineRepositories>
+ </configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>

Back to the top