Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2013-08-30 13:15:58 +0000
committerThomas Watson2013-08-30 13:15:58 +0000
commit916c5cb71f2689f1e2f2171f65eb88f7e283d8c4 (patch)
tree84a7c936bca17f0595c61a87b845afe8234e048d /tests-pom
parent42f9a3b905ecdc5817a7df28875a72f6b24e7bf6 (diff)
downloadrt.equinox.bundles-916c5cb71f2689f1e2f2171f65eb88f7e283d8c4.tar.gz
rt.equinox.bundles-916c5cb71f2689f1e2f2171f65eb88f7e283d8c4.tar.xz
rt.equinox.bundles-916c5cb71f2689f1e2f2171f65eb88f7e283d8c4.zip
Bug 415941 - Set 'code.ignoredWarnings' for test bundles in order to use global build settings
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 000000000..b894c71c2
--- /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>org.eclipse.equinox.bundles</groupId>
+ <artifactId>rt.equinox.bundles</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