Skip to content

Commit 6a880dd

Browse files
committed
pom.xml: moved java version to properties.
No functional changes.
1 parent 09e0ea6 commit 6a880dd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pom.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
<mockito.version>1.9.5-rc1</mockito.version>
2828
<fest.assert.version>2.0M6</fest.assert.version>
2929

30+
<java.version>1.6</java.version>
31+
3032
<tomcat.dir>/usr/share/tomcat6</tomcat.dir>
3133
<env.root.dir>src/env</env.root.dir>
3234

@@ -334,8 +336,8 @@
334336
<artifactId>maven-compiler-plugin</artifactId>
335337
<version>${compiler.plugin.version}</version>
336338
<configuration>
337-
<source>1.6</source>
338-
<target>1.6</target>
339+
<source>${java.version}</source>
340+
<target>${java.version}</target>
339341
<showDeprecation>true</showDeprecation>
340342
<showWarnings>true</showWarnings>
341343
<verbose>true</verbose>

0 commit comments

Comments
 (0)