Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ianj-als/omtc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Johnson <ian.johnson@appliedlanguage.com>2013-02-04 13:52:40 +0400
committerIan Johnson <ian.johnson@appliedlanguage.com>2013-02-04 13:52:40 +0400
commit3c44c11cfa1f845f17233361092dab5f2efa69a3 (patch)
tree027337097e1bef0cbcd7b60ab5a9e71b65b70ed9
parentc155a98dd4c7ee990cf1fecd3b8eb0c99e70a699 (diff)
Added Java compiler plugin to build section in pom.xml
-rw-r--r--pom.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index ee84f46..b180c5b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -57,6 +57,16 @@
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>3.0</version>
+ <configuration>
+ <source>1.7</source>
+ <target>1.7</target>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
<executions>