Print Java Version during Validate

This commit is contained in:
Simon Willnauer 2013-09-27 14:38:50 +02:00
parent 40aebfaf57
commit 8f087e802d
1 changed files with 20 additions and 0 deletions

20
pom.xml
View File

@ -954,6 +954,26 @@
</execution>
</executions>
</plugin>
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<version>1.2.1</version>
<executions>
<execution>
<id>Java Version</id>
<phase>validate</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>java</executable>
<arguments>
<argument>-version</argument>
</arguments>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>