diff options
author | jmisinco | 2016-11-04 13:49:25 +0000 |
---|---|---|
committer | jmisinco | 2017-01-05 15:01:50 +0000 |
commit | ed54681a68d768fba57ccc23739719c685a330cc (patch) | |
tree | 4a942efc6e5361c0aaa1f163ee57cb8d6232ccd6 | |
parent | a1d6a324ec7426b9294c89a10807c4a566dfb061 (diff) | |
download | org.eclipse.osee-jrm/build.tar.gz org.eclipse.osee-jrm/build.tar.xz org.eclipse.osee-jrm/build.zip |
create test framework p2jrm/build
Change-Id: I3d9ed7db7d3784a5e64cdb7a6a82a7db496b180b
4 files changed, 58 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.client.parent/pom.xml b/plugins/org.eclipse.osee.client.parent/pom.xml index 09a4339ade9..8d07694cae1 100644 --- a/plugins/org.eclipse.osee.client.parent/pom.xml +++ b/plugins/org.eclipse.osee.client.parent/pom.xml @@ -84,6 +84,8 @@ <module>../../plugins/org.eclipse.osee.client.test.framework</module> <module>../../features/org.eclipse.osee.client.test.framework.feature</module> + + <module>../../plugins/org.eclipse.osee.client.test.framework.p2</module> <module>../../features/org.eclipse.osee.client.demo.feature</module> @@ -156,7 +158,7 @@ <module>../../plugins/org.eclipse.osee.client.demo</module> <module>../../plugins/org.eclipse.osee.client.test.framework</module> - + <module>../../plugins/org.eclipse.osee.client.test.framework.p2</module> <module>../../features/org.eclipse.osee.client.test.framework.feature</module> <module>../../features/org.eclipse.osee.client.demo.feature</module> diff --git a/plugins/org.eclipse.osee.client.test.framework.p2/.project b/plugins/org.eclipse.osee.client.test.framework.p2/.project new file mode 100644 index 00000000000..b20c031bda0 --- /dev/null +++ b/plugins/org.eclipse.osee.client.test.framework.p2/.project @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>org.eclipse.osee.client.test.framework.p2</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + </buildSpec> + <natures> + </natures> +</projectDescription> diff --git a/plugins/org.eclipse.osee.client.test.framework.p2/category.xml b/plugins/org.eclipse.osee.client.test.framework.p2/category.xml new file mode 100644 index 00000000000..5ef5132a70d --- /dev/null +++ b/plugins/org.eclipse.osee.client.test.framework.p2/category.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<site> + <feature url="features/org.eclipse.osee.client.test.framework.feature_0.24.3.qualifier.jar" id="org.eclipse.osee.client.test.framework.feature" version="0.24.3.qualifier"> + <category name="org.eclipse.osee.test.framework"/> + </feature> + <feature url="features/org.eclipse.osee.client.test.framework.feature.source_0.24.3.qualifier.jar" id="org.eclipse.osee.client.test.framework.feature.source" version="0.24.3.qualifier"> + <category name="org.eclipse.osee.test.framework"/> + </feature> + <category-def name="org.eclipse.osee.test.framework" label="OSEE Test Framework - (Incubation)"> + <description> + Eclipse OSEE Test Framwork - (Incubation) + </description> + </category-def> +</site> diff --git a/plugins/org.eclipse.osee.client.test.framework.p2/pom.xml b/plugins/org.eclipse.osee.client.test.framework.p2/pom.xml new file mode 100644 index 00000000000..b23589b5073 --- /dev/null +++ b/plugins/org.eclipse.osee.client.test.framework.p2/pom.xml @@ -0,0 +1,30 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.eclipse.osee</groupId> + <artifactId>org.eclipse.osee.client.parent</artifactId> + <version>0.24.3-SNAPSHOT</version> + <relativePath>../../plugins/org.eclipse.osee.client.parent</relativePath> + </parent> + + <artifactId>org.eclipse.osee.client.test.framework.p2</artifactId> + <packaging>eclipse-repository</packaging> + <name>OSEE Client Test Framework - p2 Site (Incubation)</name> + + <build> + <plugins> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>tycho-p2-repository-plugin</artifactId> + <version>${tycho-version}</version> + <configuration> + <includeAllDependencies>true</includeAllDependencies> + </configuration> + </plugin> + </plugins> + </build> + +</project> |