Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2010-08-31 00:35:08 +0000
committerMatthias Sohn2010-08-31 00:50:03 +0000
commit51f6fbda1f515cdf91c0ccb3a50de5f785301f58 (patch)
tree67fe87dc003a2d184d2da2603d586da92214d2b4 /org.eclipse.jgit.packaging
parent47f4171315e1b65f2a6e7f5fc38f57d81de5db15 (diff)
downloadjgit-51f6fbda1f515cdf91c0ccb3a50de5f785301f58.tar.gz
jgit-51f6fbda1f515cdf91c0ccb3a50de5f785301f58.tar.xz
jgit-51f6fbda1f515cdf91c0ccb3a50de5f785301f58.zip
Fix build of JGit source bundle and feature
Add local changes I missed to push with [1] which broke the JGit build. [1] http://egit.eclipse.org/r/#change,1442 Change-Id: I300bfa84c5d8b5128026869b694ef5da7b0d3a4a Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.packaging')
-rw-r--r--org.eclipse.jgit.packaging/pom.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/org.eclipse.jgit.packaging/pom.xml b/org.eclipse.jgit.packaging/pom.xml
index 21ea83154e..cb545674e6 100644
--- a/org.eclipse.jgit.packaging/pom.xml
+++ b/org.eclipse.jgit.packaging/pom.xml
@@ -65,6 +65,7 @@
<modules>
<module>org.eclipse.jgit.feature</module>
+ <module>org.eclipse.jgit.source.feature</module>
<module>org.eclipse.jgit.junit.feature</module>
<module>org.eclipse.jgit.updatesite</module>
</modules>
@@ -77,6 +78,16 @@
</repository>
</repositories>
+ <dependencies>
+ <!-- sources artifacts so that we can place them in the features -->
+ <dependency>
+ <groupId>org.eclipse.jgit</groupId>
+ <artifactId>org.eclipse.jgit</artifactId>
+ <version>0.9.0-SNAPSHOT</version>
+ <classifier>sources</classifier>
+ </dependency>
+ </dependencies>
+
<build>
<plugins>
<plugin>

Back to the top