Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Davis2015-05-22 23:11:38 +0000
committerSam Davis2015-05-26 19:58:16 +0000
commit8aa2f10e919651992b50d9f5833f4ee9d743defb (patch)
treeecfee493c1c872fddca6b549d32d8fdf3d81dfc4
parente402e7fe4fd4d94620ea368c2565fdef8ae3a49a (diff)
downloadorg.eclipse.mylyn-8aa2f10e919651992b50d9f5833f4ee9d743defb.tar.gz
org.eclipse.mylyn-8aa2f10e919651992b50d9f5833f4ee9d743defb.tar.xz
org.eclipse.mylyn-8aa2f10e919651992b50d9f5833f4ee9d743defb.zip
423848: change Maven plugin settings to Java 7
Change-Id: Ia122773b2089bcee4962c187765ec94976d4ade0 Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=423848
-rw-r--r--org.eclipse.mylyn-parent/pom.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.mylyn-parent/pom.xml b/org.eclipse.mylyn-parent/pom.xml
index e175a87c..0597de19 100644
--- a/org.eclipse.mylyn-parent/pom.xml
+++ b/org.eclipse.mylyn-parent/pom.xml
@@ -601,8 +601,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
- <source>1.6</source>
- <target>1.6</target>
+ <source>1.7</source>
+ <target>1.7</target>
</configuration>
</plugin>
<plugin>
@@ -666,7 +666,7 @@
<configuration>
<sourceEncoding>utf-8</sourceEncoding>
<minimumTokens>100</minimumTokens>
- <targetJdk>1.6</targetJdk>
+ <targetJdk>1.7</targetJdk>
<format>xml</format>
<failOnViolation>false</failOnViolation>
<skip>${analysis.skip}</skip>

Back to the top