Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2013-08-27 14:43:21 +0000
committerDani Megert2013-08-27 14:43:21 +0000
commite781378fdd279686d5e08793cb90882fa05b328a (patch)
tree831bdbd6cc114e1969ae2dfe54247dbb9b01efd8 /tests/pom.xml
parente6a1905db24cab6c6c14c6675381c8db17e36169 (diff)
downloadeclipse.platform.team-e781378fdd279686d5e08793cb90882fa05b328a.tar.gz
eclipse.platform.team-e781378fdd279686d5e08793cb90882fa05b328a.tar.xz
eclipse.platform.team-e781378fdd279686d5e08793cb90882fa05b328a.zip
Introduced test pom that uses eclipse-parent pom property to set ignored warningsI20130902-2000I20130901-2000I20130831-1500I20130830-2000I20130829-2000I20130828-1800I20130828-1000
Diffstat (limited to 'tests/pom.xml')
-rw-r--r--tests/pom.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/pom.xml b/tests/pom.xml
new file mode 100644
index 000000000..6d6b8764b
--- /dev/null
+++ b/tests/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.team</groupId>
+ <artifactId>eclipse.platform.team</artifactId>
+ <version>4.4.0-SNAPSHOT</version>
+ </parent>
+ <artifactId>eclipse.platform.team.tests</artifactId>
+ <version>4.4.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <properties>
+ <code.ignoredWarnings>${tests.ignoredWarnings}</code.ignoredWarnings>
+ </properties>
+</project>

Back to the top