diff options
Diffstat (limited to 'org.eclipse.jgit.packaging/org.eclipse.jgit.target/pom.xml')
-rw-r--r-- | org.eclipse.jgit.packaging/org.eclipse.jgit.target/pom.xml | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/org.eclipse.jgit.packaging/org.eclipse.jgit.target/pom.xml b/org.eclipse.jgit.packaging/org.eclipse.jgit.target/pom.xml index afeb3347c6..a30f3c1557 100644 --- a/org.eclipse.jgit.packaging/org.eclipse.jgit.target/pom.xml +++ b/org.eclipse.jgit.packaging/org.eclipse.jgit.target/pom.xml @@ -53,6 +53,33 @@ </parent> <artifactId>org.eclipse.jgit.target</artifactId> - <packaging>eclipse-target-definition</packaging> + <packaging>pom</packaging> <name>JGit Target Platform</name> + + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + <executions> + <execution> + <id>attach-artifacts</id> + <phase>package</phase> + <goals> + <goal>attach-artifact</goal> + </goals> + <configuration> + <artifacts> + <artifact> + <file>${target-platform}.target</file> + <type>target</type> + <classifier>${target-platform}</classifier> + </artifact> + </artifacts> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> </project>
\ No newline at end of file |