Add p2 repository build
diff --git a/releng/org.eclipse.rap.clientscripting.build/pom.xml b/releng/org.eclipse.rap.clientscripting.build/pom.xml index 77edb81..e6c5040 100644 --- a/releng/org.eclipse.rap.clientscripting.build/pom.xml +++ b/releng/org.eclipse.rap.clientscripting.build/pom.xml
@@ -33,6 +33,7 @@ <modules> <module>../../features/org.eclipse.rap.clientscripting.feature</module> <module>../../bundles/org.eclipse.rap.clientscripting</module> + <module>repository</module> </modules> <repositories>
diff --git a/releng/org.eclipse.rap.clientscripting.build/repository/category.xml b/releng/org.eclipse.rap.clientscripting.build/repository/category.xml new file mode 100644 index 0000000..61d0a66 --- /dev/null +++ b/releng/org.eclipse.rap.clientscripting.build/repository/category.xml
@@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (C) 2011, EclipseSource and others + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Public License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/legal/epl-v10.html + + Contributors: + EclipseSource - initial implementation +--> +<site> + + <category-def + name="org.eclipse.rap.incubator.category" + label="Rich Ajax Platform (RAP) Incubator" /> + + <feature url="http://eclipse.org/rap" + id="org.eclipse.rap.clientscripting.feature" + version="0.1.0.qualifier"> + <category name="org.eclipse.rap.category"/> + </feature> + +</site>
diff --git a/releng/org.eclipse.rap.clientscripting.build/repository/pom.xml b/releng/org.eclipse.rap.clientscripting.build/repository/pom.xml new file mode 100644 index 0000000..23f3402 --- /dev/null +++ b/releng/org.eclipse.rap.clientscripting.build/repository/pom.xml
@@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (C) 2011, 2012 EclipseSource and others + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Public License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/legal/epl-v10.html + + Contributors: + EclipseSource - initial implementation +--> +<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/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.eclipse.rap.clientscripting</groupId> + <artifactId>org.eclipse.rap.clientscripting-parent</artifactId> + <version>0.1.0-SNAPSHOT</version> + </parent> + + <artifactId>org.eclipse.rap.clientscripting-repository</artifactId> + <packaging>eclipse-repository</packaging> + + <build> + <plugins> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>tycho-p2-repository-plugin</artifactId> + <version>${tycho-version}</version> + <configuration> + <repositoryName>RAP ClientScripting</repositoryName> + <includeAllDependencies>false</includeAllDependencies> + <compress>true</compress> + </configuration> + </plugin> + </plugins> + </build> + +</project>