Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M. Finkbeiner2015-10-23 14:12:18 +0000
committerRyan T. Baldwin2015-10-23 14:12:18 +0000
commitf47ceeed28ff055777e1a7a308b076442de637ec (patch)
treefdb680c3b513343a26411b2e437be0224e35ea4a /plugins/org.eclipse.osee.ote.p2/pom.xml
parent3a01665715b37d15f200df16ea4de353b5530f1d (diff)
downloadorg.eclipse.osee-f47ceeed28ff055777e1a7a308b076442de637ec.tar.gz
org.eclipse.osee-f47ceeed28ff055777e1a7a308b076442de637ec.tar.xz
org.eclipse.osee-f47ceeed28ff055777e1a7a308b076442de637ec.zip
feature: Remove OTE from main OSEE build
Diffstat (limited to 'plugins/org.eclipse.osee.ote.p2/pom.xml')
-rw-r--r--plugins/org.eclipse.osee.ote.p2/pom.xml62
1 files changed, 62 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.ote.p2/pom.xml b/plugins/org.eclipse.osee.ote.p2/pom.xml
index ac2dbfb81fc..fcc165bee4a 100644
--- a/plugins/org.eclipse.osee.ote.p2/pom.xml
+++ b/plugins/org.eclipse.osee.ote.p2/pom.xml
@@ -15,6 +15,68 @@
<name>OSEE OTE - p2 Site (Incubation)</name>
<version>0.23.0-SNAPSHOT</version>
+<build>
+<plugins>
+<plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-repository-plugin</artifactId>
+ <version>${tycho-version}</version>
+ <configuration>
+ <includeAllDependencies>true</includeAllDependencies>
+ </configuration>
+ <executions>
+ <execution>
+ <id>assemble-repository</id>
+ <goals>
+ <goal>assemble-repository</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>archive-repository</id>
+ <phase>pre-integration-test</phase>
+ <goals>
+ <goal>archive-repository</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <tasks name="generate">
+ <taskdef resource="net/sf/antcontrib/antlib.xml" />
+ <if>
+ <available file="version.xml" />
+ <then>
+ <ant antfile="version.xml" />
+ </then>
+ </if>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>ant-contrib</groupId>
+ <artifactId>ant-contrib</artifactId>
+ <version>1.0b3</version>
+ <exclusions>
+ <exclusion>
+ <groupId>ant</groupId>
+ <artifactId>ant</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
<!-- <build>
<plugins>
<plugin>

Back to the top