Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2013-08-27 14:44:36 +0000
committerDani Megert2013-08-27 14:44:36 +0000
commit655285f16d025a7f027e5d0e607b929cf86e9769 (patch)
treef4c31f2bd65e4b4bc3039de5bb7d2ce36bb58d4f
parent217b7c2a648603491b3d552b18f64cbdbca08b81 (diff)
downloadeclipse.platform.ua-I20130830-2000.tar.gz
eclipse.platform.ua-I20130830-2000.tar.xz
eclipse.platform.ua-I20130830-2000.zip
-rw-r--r--org.eclipse.ua.tests.doc/pom.xml7
-rw-r--r--org.eclipse.ua.tests/pom.xml5
-rw-r--r--tests-pom/pom.xml25
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>

Back to the top