projects
/
xudocci.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2eee3d3
)
Configure maven’s compiler plugin to use Java 1.6.
author
David ‘Bombe’ Roden
<bombe@pterodactylus.net>
Thu, 2 May 2013 19:14:08 +0000
(21:14 +0200)
committer
David ‘Bombe’ Roden
<bombe@pterodactylus.net>
Thu, 2 May 2013 19:14:08 +0000
(21:14 +0200)
pom.xml
patch
|
blob
|
history
diff --git
a/pom.xml
b/pom.xml
index
ce27ee6
..
2d6e010
100644
(file)
--- a/
pom.xml
+++ b/
pom.xml
@@
-36,4
+36,18
@@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0.2</version>
+ <configuration>
+ <source>1.6</source>
+ <target>1.6</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
</project>