Revision: 67302
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at September 5, 2014 20:49 by alces
Initial Code
<project>
<!--
...
Put your project's GAV and dependencies here
...
-->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>ini</id>
<phase>initialize</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<!-- for plugin version < 1.5 <target> doesn't work - use <tasks> instead -->
<target>
<property environment="env" />
<echoproperties prefix="env." />
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Initial URL
mvn-antrun-printenv
Initial Description
Prints names and values of all the environment variables from a context of maven build using maven-antrun-plugin and echoproperties maven task
Initial Title
Print all of the environment variables from a maven build
Initial Tags
Initial Language
XML