Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcbrun2017-03-03 16:27:40 +0000
committercbrun2017-03-03 16:27:40 +0000
commit130576bbdf60f681ece53609598c8d6c8226d4da (patch)
tree09510e0b5765b968136685e4296da41fb5afc065
parentb8b677b42fbb1c5cfdc95a2c78e6cd0be9918f5e (diff)
downloadorg.eclipse.ecoretools-130576bbdf60f681ece53609598c8d6c8226d4da.tar.gz
org.eclipse.ecoretools-130576bbdf60f681ece53609598c8d6c8226d4da.tar.xz
org.eclipse.ecoretools-130576bbdf60f681ece53609598c8d6c8226d4da.zip
[512050] setup Tycho support for Eclipse-SourceReferences
-rw-r--r--org.eclipse.emf.ecoretools.build/pom.xml20
1 files changed, 19 insertions, 1 deletions
diff --git a/org.eclipse.emf.ecoretools.build/pom.xml b/org.eclipse.emf.ecoretools.build/pom.xml
index 0630e0f..bb56957 100644
--- a/org.eclipse.emf.ecoretools.build/pom.xml
+++ b/org.eclipse.emf.ecoretools.build/pom.xml
@@ -38,6 +38,7 @@
<properties>
<tycho-version>0.23.1</tycho-version>
+ <tycho.scmUrl>scm:git:https://git.eclipse.org/r/ecoretools/org.eclipse.ecoretools</tycho.scmUrl>
</properties>
@@ -104,7 +105,24 @@
</environment>
</environments>
</configuration>
- </plugin>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-packaging-plugin</artifactId>
+ <version>${tycho-version}</version>
+ <configuration>
+ <sourceReferences>
+ <generate>true</generate>
+ </sourceReferences>
+ </configuration>
+ <dependencies>
+ <dependency>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-sourceref-jgit</artifactId>
+ <version>${tycho-version}</version>
+ </dependency>
+ </dependencies>
+ </plugin>
</plugins>
<pluginManagement>
<plugins>

Back to the top