Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2013-08-28 13:43:38 +0000
committerJayaprakash Arthanareeswaran2013-10-08 17:37:11 +0000
commitc9761165cd2df79970aa5e4d77f818f34e0cba49 (patch)
tree9e8eaa6c3a8e33858d8fb304176a00bc00be7c5b /tests-pom
parent66b9a4268349a5cb9cf8ab6131db5c888e949ee8 (diff)
downloadeclipse.jdt.core-c9761165cd2df79970aa5e4d77f818f34e0cba49.tar.gz
eclipse.jdt.core-c9761165cd2df79970aa5e4d77f818f34e0cba49.tar.xz
eclipse.jdt.core-c9761165cd2df79970aa5e4d77f818f34e0cba49.zip
Fix for Bug 415943 - Set 'code.ignoredWarnings' for test bundles in
order to use global build settings Signed-off-by: Dani Megert <daniel_megert@ch.ibm.com>
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 0000000000..58217873a8
--- /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.jdt.core</groupId>
+ <artifactId>eclipse.jdt.core</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> \ No newline at end of file

Back to the top