diff options
Diffstat (limited to 'org.eclipse.jgit.packaging/org.eclipse.jgit.repository/pom.xml')
-rw-r--r-- | org.eclipse.jgit.packaging/org.eclipse.jgit.repository/pom.xml | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/org.eclipse.jgit.packaging/org.eclipse.jgit.repository/pom.xml b/org.eclipse.jgit.packaging/org.eclipse.jgit.repository/pom.xml index 0cf09dd652..f088af1953 100644 --- a/org.eclipse.jgit.packaging/org.eclipse.jgit.repository/pom.xml +++ b/org.eclipse.jgit.packaging/org.eclipse.jgit.repository/pom.xml @@ -54,7 +54,9 @@ </parent> <artifactId>org.eclipse.jgit.repository</artifactId> - <packaging>eclipse-repository</packaging> + <!-- TODO as soon as Tycho bug 368596 is fixed we should use packaging type + eclipse-repository --> + <packaging>eclipse-update-site</packaging> <name>JGit P2 Repository</name> @@ -80,4 +82,28 @@ <version>2.0.0-SNAPSHOT</version> </dependency> </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-assembly-plugin</artifactId> + <version>2.3</version> + <configuration> + <descriptors> + <descriptor>assembly.xml</descriptor> + </descriptors> + </configuration> + <executions> + <execution> + <id>make-assembly</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> </project> |