138 |
<artifactId>maven-compiler-plugin</artifactId> |
<artifactId>maven-compiler-plugin</artifactId> |
139 |
<version>2.5.1</version> |
<version>2.5.1</version> |
140 |
<configuration> |
<configuration> |
141 |
<source>1.7</source> |
<!-- |
142 |
<target>1.7</target> |
|
143 |
<showDeprecation>true</showDeprecation> |
<source>1.6</source> |
144 |
<showWarnings>true</showWarnings> |
<target>1.6</target>--> |
|
<executable>/usr/lib/jvm/java-7-oracle/bin/javac</executable> |
|
|
<fork>true</fork> |
|
145 |
<excludes> |
<excludes> |
146 |
<exclude>**/.svn</exclude> <!-- ??? --> |
<exclude>**/.svn</exclude> |
147 |
</excludes> |
</excludes> |
148 |
</configuration> |
</configuration> |
149 |
</plugin> |
</plugin> |
278 |
</snapshotRepository> |
</snapshotRepository> |
279 |
|
|
280 |
</distributionManagement> |
</distributionManagement> |
281 |
|
|
282 |
|
|
283 |
|
<profiles> |
284 |
|
<profile> |
285 |
|
<id>ms_kallisto</id> |
286 |
|
<build> |
287 |
|
<plugins> |
288 |
|
<plugin> |
289 |
|
<groupId>org.apache.maven.plugins</groupId> |
290 |
|
<artifactId>maven-compiler-plugin</artifactId> |
291 |
|
<version>2.5.1</version> |
292 |
|
<configuration> |
293 |
|
<source>1.7</source> |
294 |
|
<target>1.7</target> |
295 |
|
<showDeprecation>true</showDeprecation> |
296 |
|
<showWarnings>true</showWarnings> |
297 |
|
<executable>${env.JAVA_HOME}/bin/javac</executable> |
298 |
|
<fork>true</fork> |
299 |
|
</configuration> |
300 |
|
</plugin> |
301 |
|
</plugins> |
302 |
|
</build> |
303 |
|
</profile> |
304 |
|
</profiles> |
305 |
|
|
306 |
</project> |
</project> |