Skip to content

Instantly share code, notes, and snippets.

@pubudu94
Created June 24, 2018 14:31
Show Gist options
  • Save pubudu94/3f467ff76942b8f08a591b2f682147cc to your computer and use it in GitHub Desktop.
Save pubudu94/3f467ff76942b8f08a591b2f682147cc to your computer and use it in GitHub Desktop.
<profiles>
<profile>
<id>tools-jar-in-plugin</id>
<activation>
<os>
<family>linux</family>
</os>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<dependencies>
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>${java.version}</version>
<scope>system</scope>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</profile>
</profiles>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment