Skip to content

Instantly share code, notes, and snippets.

@Teelord
Created October 16, 2015 15:11
Show Gist options
  • Select an option

  • Save Teelord/13c328d07353046d03cb to your computer and use it in GitHub Desktop.

Select an option

Save Teelord/13c328d07353046d03cb to your computer and use it in GitHub Desktop.
Output Text From Maven Build
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<echo>Displaying value of properties</echo>
<echo>[project.parent.artifactId] ${project.parent.artifactId}</echo>
<echo>[project.artifactId] ${project.artifactId}</echo>
<echo>[project.parent.artifactId] ${project.parent.artifactId}</echo>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment