Add test project to build
diff --git a/releng/org.eclipse.rap.clientscripting.build/pom.xml b/releng/org.eclipse.rap.clientscripting.build/pom.xml index e6c5040..09c0075 100644 --- a/releng/org.eclipse.rap.clientscripting.build/pom.xml +++ b/releng/org.eclipse.rap.clientscripting.build/pom.xml
@@ -22,7 +22,6 @@ <properties> <tycho-version>0.15.0</tycho-version> <surefire-version>2.9</surefire-version> - <junit-version>3.8.2</junit-version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> @@ -31,8 +30,9 @@ </prerequisites> <modules> - <module>../../features/org.eclipse.rap.clientscripting.feature</module> <module>../../bundles/org.eclipse.rap.clientscripting</module> + <module>../../tests/org.eclipse.rap.clientscripting.test</module> + <module>../../features/org.eclipse.rap.clientscripting.feature</module> <module>repository</module> </modules> @@ -42,6 +42,11 @@ <layout>p2</layout> <url>http://download.eclipse.org/rt/rap/1.5/runtime</url> </repository> + <repository> + <id>extra-dependencies-repository</id> + <layout>p2</layout> + <url>http://build.eclipse.org/rt/rap/base-platforms/1.5/extra-dependencies</url> + </repository> </repositories> <build>
diff --git a/tests/org.eclipse.rap.clientscripting.test/pom.xml b/tests/org.eclipse.rap.clientscripting.test/pom.xml new file mode 100644 index 0000000..c4835d9 --- /dev/null +++ b/tests/org.eclipse.rap.clientscripting.test/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (C) 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> + <relativePath>../../releng/org.eclipse.rap.clientscripting.build/pom.xml</relativePath> + </parent> + + <artifactId>org.eclipse.rap.clientscripting.test</artifactId> + <packaging>eclipse-plugin</packaging> + +</project>