Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Belle2017-09-17 15:00:32 +0000
committerJan Belle2017-09-17 15:00:32 +0000
commit216b91e9103d80043239ecda7052fecb0999b085 (patch)
tree0c2d2f573f6c5d498e183bce322fa06713d1718a /plugins/org.eclipse.etrice.ui.runtime/pom.xml
parent26e553de11a137a1487074bce959a3b4423f2e1c (diff)
downloadorg.eclipse.etrice-newbuild.tar.gz
org.eclipse.etrice-newbuild.tar.xz
org.eclipse.etrice-newbuild.zip
cleaned up buildnewbuild
Diffstat (limited to 'plugins/org.eclipse.etrice.ui.runtime/pom.xml')
-rw-r--r--plugins/org.eclipse.etrice.ui.runtime/pom.xml36
1 files changed, 36 insertions, 0 deletions
diff --git a/plugins/org.eclipse.etrice.ui.runtime/pom.xml b/plugins/org.eclipse.etrice.ui.runtime/pom.xml
new file mode 100644
index 000000000..b4f90a7bf
--- /dev/null
+++ b/plugins/org.eclipse.etrice.ui.runtime/pom.xml
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>
+ <groupId>org.eclipse.etrice</groupId>
+ <artifactId>org.eclipse.etrice.parent</artifactId>
+ <version>1.1.1-SNAPSHOT</version>
+ <relativePath>../../releng/org.eclipse.etrice.parent/pom.xml</relativePath>
+ </parent>
+ <groupId>org.eclipse.etrice</groupId>
+ <artifactId>org.eclipse.etrice.ui.runtime</artifactId>
+ <packaging>eclipse-plugin</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.8</version>
+ <executions>
+ <execution>
+ <phase>generate-resources</phase>
+ <configuration>
+ <tasks>
+ <ant antfile="create_contents.xml" target="zip_all_projects"/>
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>

Back to the top