Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2010-05-25 12:00:17 +0000
committerMatthias Sohn2010-05-26 09:37:29 +0000
commit62e5fc7e91c88329a6a42150873bbecb3e1eacc7 (patch)
treef6df1343252c67deb0fe7a65150e9a38343e7c7b /pom.xml
parent4e4fd9228e380be07b0b2a469db268d6da213b69 (diff)
downloadegit-62e5fc7e91c88329a6a42150873bbecb3e1eacc7.tar.gz
egit-62e5fc7e91c88329a6a42150873bbecb3e1eacc7.tar.xz
egit-62e5fc7e91c88329a6a42150873bbecb3e1eacc7.zip
Retrieve wikitext jars via OSGi dependencies and maven
Previously the required wikitext binaries were committed into the repository. Instead we are now downloading them from the wikitext p2-repository during the build. Change-Id: I92fb710ad2e7c4d1099686176bdfe6845abd632a Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index f3033c2b6a..b205838158 100644
--- a/pom.xml
+++ b/pom.xml
@@ -65,6 +65,7 @@
<jgit-site>file:/${basedir}/../../jgit/org.eclipse.jgit.packaging/org.eclipse.jgit.updatesite/target/site</jgit-site>
<eclipse-site>http://download.eclipse.org/releases/${platform-version-name}</eclipse-site>
<swtbot-site>http://download.eclipse.org/technology/swtbot/${platform-version-name}/dev-build/update-site</swtbot-site>
+ <wikitext-site>http://download.eclipse.org/tools/mylyn/update/weekly/e3.4</wikitext-site>
</properties>
<profiles>
@@ -135,6 +136,11 @@
<layout>p2</layout>
<url>${swtbot-site}</url>
</repository>
+ <repository>
+ <id>wikitext</id>
+ <layout>p2</layout>
+ <url>${wikitext-site}</url>
+ </repository>
</repositories>
<build>

Back to the top