Skip to content

Instantly share code, notes, and snippets.

@zhanglintc
Created April 30, 2021 04:32
Show Gist options
  • Save zhanglintc/9135f23e478dfc893c65b5c017514d81 to your computer and use it in GitHub Desktop.
Save zhanglintc/9135f23e478dfc893c65b5c017514d81 to your computer and use it in GitHub Desktop.
echo in POM
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.3</version>
<executions>
<execution>
<id>ant-validate</id>
<phase>validate</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<echo>${root.dir}</echo>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment