diff options
-rw-r--r-- | org.eclipse.ua.tests.doc/pom.xml | 7 | ||||
-rw-r--r-- | org.eclipse.ua.tests/pom.xml | 5 | ||||
-rw-r--r-- | tests-pom/pom.xml | 25 |
3 files changed, 32 insertions, 5 deletions
diff --git a/org.eclipse.ua.tests.doc/pom.xml b/org.eclipse.ua.tests.doc/pom.xml index 817ec9d29..b4fde53ed 100644 --- a/org.eclipse.ua.tests.doc/pom.xml +++ b/org.eclipse.ua.tests.doc/pom.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- - Copyright (c) 2012 Eclipse Foundation. + Copyright (c) 2012, 2013 Eclipse Foundation and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Distribution License v1.0 which accompanies this distribution, and is available at @@ -12,12 +12,13 @@ <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> - <artifactId>eclipse.platform.ua</artifactId> + <artifactId>tests-pom</artifactId> <groupId>eclipse.platform.ua</groupId> <version>4.4.0-SNAPSHOT</version> + <relativePath>../tests-pom/</relativePath> </parent> <groupId>org.eclipse.ua</groupId> <artifactId>org.eclipse.ua.tests.doc</artifactId> <version>1.0.100-SNAPSHOT</version> - <packaging>eclipse-plugin</packaging> + <packaging>eclipse-test-plugin</packaging> </project> diff --git a/org.eclipse.ua.tests/pom.xml b/org.eclipse.ua.tests/pom.xml index 6120a5ddb..2432425c0 100644 --- a/org.eclipse.ua.tests/pom.xml +++ b/org.eclipse.ua.tests/pom.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- - Copyright (c) 2012 Eclipse Foundation. + Copyright (c) 2012, 2013 Eclipse Foundation and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Distribution License v1.0 which accompanies this distribution, and is available at @@ -12,9 +12,10 @@ <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> - <artifactId>eclipse.platform.ua</artifactId> + <artifactId>tests-pom</artifactId> <groupId>eclipse.platform.ua</groupId> <version>4.4.0-SNAPSHOT</version> + <relativePath>../tests-pom/</relativePath> </parent> <groupId>org.eclipse.ua</groupId> <artifactId>org.eclipse.ua.tests</artifactId> diff --git a/tests-pom/pom.xml b/tests-pom/pom.xml new file mode 100644 index 000000000..1efc8eaef --- /dev/null +++ b/tests-pom/pom.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + IBM Corporation - initial API and 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>eclipse.platform.ua</groupId> + <artifactId>eclipse.platform.ua</artifactId> + <version>4.4.0-SNAPSHOT</version> + </parent> + <artifactId>tests-pom</artifactId> + <version>4.4.0-SNAPSHOT</version> + <packaging>pom</packaging> + <properties> + <code.ignoredWarnings>${tests.ignoredWarnings}</code.ignoredWarnings> + </properties> +</project> |