Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.m2m.atl.engine.vm/pom.xml')
-rw-r--r--plugins/org.eclipse.m2m.atl.engine.vm/pom.xml69
1 files changed, 47 insertions, 22 deletions
diff --git a/plugins/org.eclipse.m2m.atl.engine.vm/pom.xml b/plugins/org.eclipse.m2m.atl.engine.vm/pom.xml
index 82017220..dbbbca18 100644
--- a/plugins/org.eclipse.m2m.atl.engine.vm/pom.xml
+++ b/plugins/org.eclipse.m2m.atl.engine.vm/pom.xml
@@ -9,26 +9,51 @@
Contributors:
Obeo - initial creator
-->
- <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <artifactId>m2m.atl-parent</artifactId>
- <groupId>org.eclipse.m2m.atl</groupId>
- <version>4.0.0-SNAPSHOT</version>
- <relativePath>../../releng/org.eclipse.m2m.atl.releng.parent</relativePath>
- </parent>
- <groupId>org.eclipse.m2m.atl</groupId>
- <artifactId>org.eclipse.m2m.atl.engine.vm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <packaging>eclipse-plugin</packaging>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.eclipse.tycho</groupId>
- <artifactId>tycho-source-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
+<project
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+ xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <artifactId>m2m.atl-parent</artifactId>
+ <groupId>org.eclipse.m2m.atl</groupId>
+ <version>4.0.0-SNAPSHOT</version>
+ <relativePath>../../releng/org.eclipse.m2m.atl.releng.parent</relativePath>
+ </parent>
+ <groupId>org.eclipse.m2m.atl</groupId>
+ <artifactId>org.eclipse.m2m.atl.engine.vm</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-source-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>deploy-custom</id>
+ <phase>deploy</phase>
+ <goals>
+ <goal>deploy-file</goal>
+ </goals>
+ <configuration>
+ <file>${project.build.directory}/${project.artifactId}-${project.version}.jar</file>
+ <sources>${project.build.directory}/${project.artifactId}-${project.version}-sources.jar</sources>
+ <repositoryId>${repository.id}</repositoryId>
+ <url>${repository.url}</url>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>${project.artifactId}</artifactId>
+ <version>${project.deployVersion}</version>
+ <packaging>jar</packaging>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</project>

Back to the top