Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Fedorenko2014-05-28 20:06:39 +0000
committerIgor Fedorenko2014-05-28 20:06:39 +0000
commitda7e86e8e320ced8669872151e0ef6eb34c553d4 (patch)
tree00f55daac08a3a15644f40c70487853e8e678bda /m2e-maven-runtime
parent0f55826d0e48c36db8d00adf098f730e279104aa (diff)
downloadm2e-core-da7e86e8e320ced8669872151e0ef6eb34c553d4.tar.gz
m2e-core-da7e86e8e320ced8669872151e0ef6eb34c553d4.tar.xz
m2e-core-da7e86e8e320ced8669872151e0ef6eb34c553d4.zip
435695 more java7 changes (missed a few last time)
Signed-off-by: Igor Fedorenko <igor@ifedorenko.com>
Diffstat (limited to 'm2e-maven-runtime')
-rw-r--r--m2e-maven-runtime/pom.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/m2e-maven-runtime/pom.xml b/m2e-maven-runtime/pom.xml
index be8c161b..9748c101 100644
--- a/m2e-maven-runtime/pom.xml
+++ b/m2e-maven-runtime/pom.xml
@@ -58,6 +58,16 @@
<pluginManagement>
<plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>3.1</version>
+ <configuration>
+ <!-- http://maven.apache.org/plugins/maven-compiler-plugin/ -->
+ <source>1.7</source>
+ <target>1.7</target>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>${maven-bundle-plugin.version}</version>

Back to the top