Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2013-08-26 19:52:29 +0000
committerDani Megert2013-08-26 19:52:29 +0000
commit7faf7e05c17c83919b15a373386b84670c4662a6 (patch)
tree30f5956fae41481554b0f0d7dcc48fdd60b95551 /tests-pom
parent085c08da4b246bd081a376a840f486e798bb262e (diff)
downloadeclipse.platform.text-7faf7e05c17c83919b15a373386b84670c4662a6.tar.gz
eclipse.platform.text-7faf7e05c17c83919b15a373386b84670c4662a6.tar.xz
eclipse.platform.text-7faf7e05c17c83919b15a373386b84670c4662a6.zip
Introduced test pom that uses eclipe-parent pom property to set ignored warnings
Diffstat (limited to 'tests-pom')
-rw-r--r--tests-pom/pom.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests-pom/pom.xml b/tests-pom/pom.xml
new file mode 100644
index 00000000000..e29c3ec85c6
--- /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:
+ Igor Fedorenko - 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>
+ <artifactId>eclipse.platform.text</artifactId>
+ <groupId>eclipse.platform.text</groupId>
+ <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