Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-02-17 06:03:32 +0000
committerUwe Stieber2012-02-17 06:03:32 +0000
commit27c7a2ca29bea00fe3b5c5ab54f8e030d89aec14 (patch)
tree4969c5da68e5b47f23efa3fa2a49bbf46f054a00
parent57962ae58e752a5b826f3a045ad9f242c567abba (diff)
downloadorg.eclipse.tcf-27c7a2ca29bea00fe3b5c5ab54f8e030d89aec14.tar.gz
org.eclipse.tcf-27c7a2ca29bea00fe3b5c5ab54f8e030d89aec14.tar.xz
org.eclipse.tcf-27c7a2ca29bea00fe3b5c5ab54f8e030d89aec14.zip
Switch to Tycho 0.14.0 and set encoding element for findbugs plugin
-rw-r--r--pom.xml19
1 files changed, 2 insertions, 17 deletions
diff --git a/pom.xml b/pom.xml
index 89f3519b1..f677a3277 100644
--- a/pom.xml
+++ b/pom.xml
@@ -15,7 +15,7 @@
<name>TCF Parent</name>
<properties>
- <tycho-version>0.13.0</tycho-version>
+ <tycho-version>0.14.0</tycho-version>
<platform-version>4.2milestones</platform-version>
<platform-site>http://download.eclipse.org/eclipse/updates/${platform-version}</platform-site>
<cdt-site>http://download.eclipse.org/tools/cdt/builds/hudson/cdt-nightly</cdt-site>
@@ -189,26 +189,11 @@
</configuration>
</plugin>
<plugin>
- <groupId>org.eclipse.tycho</groupId>
- <artifactId>tycho-source-plugin</artifactId>
- <version>${tycho-version}</version>
- <configuration>
- <encoding>UTF-8</encoding>
- </configuration>
- <executions>
- <execution>
- <id>attach-source</id>
- <goals>
- <goal>plugin-source</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.4.1-SNAPSHOT</version>
<configuration>
+ <encoding>UTF-8</encoding>
<effort>Max</effort>
<threshold>Low</threshold>
<xmlOutput>true</xmlOutput>

Back to the top