@@ -81,18 +81,18 @@ of testing facilities designed for use with TestNG (http://testng.org/), so it's
8181 <plugin >
8282 <groupId >org.apache.maven.plugins</groupId >
8383 <artifactId >maven-compiler-plugin</artifactId >
84- <version >2.3.2 </version >
84+ <version >${compiler.plugin.version} </version >
8585 <configuration >
86- <source >1.8 </source >
87- <target >1.8 </target >
86+ <source >${source.version} </source >
87+ <target >${target.version} </target >
8888 <optimize >true</optimize >
8989 </configuration >
9090 </plugin >
9191
9292 <plugin >
9393 <groupId >org.apache.maven.plugins</groupId >
9494 <artifactId >maven-surefire-plugin</artifactId >
95- <version >2.7.2 </version >
95+ <version >${compiler.surefire.version} </version >
9696 <configuration >
9797 <systemPropertyVariables >
9898 <tapestry .execution-mode>Qa</tapestry .execution-mode>
@@ -104,7 +104,7 @@ of testing facilities designed for use with TestNG (http://testng.org/), so it's
104104 <plugin >
105105 <groupId >org.mortbay.jetty</groupId >
106106 <artifactId >maven-jetty-plugin</artifactId >
107- <version >6.1.16 </version >
107+ <version >${compiler.jetty.version} </version >
108108 <configuration >
109109 <!-- Log to the console. -->
110110 <requestLog implementation =" org.mortbay.jetty.NCSARequestLog" >
@@ -140,6 +140,11 @@ of testing facilities designed for use with TestNG (http://testng.org/), so it's
140140 </repositories >
141141
142142 <properties >
143+ <compiler .jetty.version>6.1.16</compiler .jetty.version>
144+ <compiler .surefire.version>2.7.2</compiler .surefire.version>
145+ <compiler .plugin.version>2.3.2</compiler .plugin.version>
146+ <source .version>1.8</source .version>
147+ <target .version>1.8</target .version>
143148 <tapestry-release-version >5.4.5</tapestry-release-version >
144149 <servlet-api-release-version >2.5</servlet-api-release-version >
145150 <testng-release-version >6.8.21</testng-release-version >
0 commit comments