Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDennis Wagelaar2018-04-28 14:05:31 +0000
committerDennis Wagelaar2018-04-28 14:05:31 +0000
commit6945d2f3d395fef3e49e259c1a20067baa0c15c6 (patch)
tree5cf707cee78846ccc7eeee4b8839dd3a5ca8b566 /plugins
parent378fa60405af9853f6b269df343790ed040af536 (diff)
downloadorg.eclipse.atl-6945d2f3d395fef3e49e259c1a20067baa0c15c6.tar.gz
org.eclipse.atl-6945d2f3d395fef3e49e259c1a20067baa0c15c6.tar.xz
org.eclipse.atl-6945d2f3d395fef3e49e259c1a20067baa0c15c6.zip
534003: Add Maven/stand-alone support for EMFTVM Ant tasks
Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=534003 Deploy standalone jar to maven repo
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.m2m.atl.emftvm.ant/pom.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/org.eclipse.m2m.atl.emftvm.ant/pom.xml b/plugins/org.eclipse.m2m.atl.emftvm.ant/pom.xml
index 6b2ed2ae..e47ad816 100644
--- a/plugins/org.eclipse.m2m.atl.emftvm.ant/pom.xml
+++ b/plugins/org.eclipse.m2m.atl.emftvm.ant/pom.xml
@@ -59,6 +59,22 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>deploy-standalone</id>
+ <configuration>
+ <file>${project.build.directory}/standalone/org.eclipse.m2m.atl.emftvm.ant.standalone-${project.version}.jar</file>
+ <repositoryId>repo.eclipse.org</repositoryId>
+ <url>https://repo.eclipse.org/content/repositories/atl-snapshots/</url>
+ <groupId>org.eclipse.m2m.atl</groupId>
+ <artifactId>org.eclipse.m2m.atl.emftvm.ant.standalone</artifactId>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
</project>

Back to the top