Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2013-08-22 15:20:30 +0000
committerDani Megert2013-08-22 15:20:30 +0000
commit8817bbc1aaad71e5f74bc007807a682ec472f749 (patch)
tree3e51736b2dfcd2679e8c37542db49cd91dee4ba0
parent9129eb82c20ffb0f8d65ea583d37588538731c4b (diff)
downloadeclipse.jdt.ui-8817bbc1aaad71e5f74bc007807a682ec472f749.tar.gz
eclipse.jdt.ui-8817bbc1aaad71e5f74bc007807a682ec472f749.tar.xz
eclipse.jdt.ui-8817bbc1aaad71e5f74bc007807a682ec472f749.zip
Fixed bug 401776: [CBI] too many compile warnings
-rw-r--r--org.eclipse.jdt.ui.tests.refactoring/pom.xml3
-rw-r--r--tests-pom/pom.xml37
2 files changed, 39 insertions, 1 deletions
diff --git a/org.eclipse.jdt.ui.tests.refactoring/pom.xml b/org.eclipse.jdt.ui.tests.refactoring/pom.xml
index d864009d16..803f994acd 100644
--- a/org.eclipse.jdt.ui.tests.refactoring/pom.xml
+++ b/org.eclipse.jdt.ui.tests.refactoring/pom.xml
@@ -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.jdt.ui</artifactId>
+ <artifactId>tests-pom</artifactId>
<groupId>eclipse.jdt.ui</groupId>
<version>4.4.0-SNAPSHOT</version>
+ <relativePath>../tests-pom/</relativePath>
</parent>
<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.ui.tests.refactoring</artifactId>
diff --git a/tests-pom/pom.xml b/tests-pom/pom.xml
new file mode 100644
index 0000000000..73ee68ed05
--- /dev/null
+++ b/tests-pom/pom.xml
@@ -0,0 +1,37 @@
+<?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.jdt.ui</artifactId>
+ <groupId>eclipse.jdt.ui</groupId>
+ <version>4.4.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.eclipse.jdt</groupId>
+ <artifactId>tests-pom</artifactId>
+ <version>4.4.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-compiler-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <configuration>
+ <compilerArgs>
+ <arg>-warn:-discouraged</arg>
+ </compilerArgs>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>

Back to the top