Created
April 15, 2022 15:13
-
-
Save Romain-P/ac4b08336891cffc2f528f52f3d798b7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<profile> | |
<id>skipInstall</id> | |
<activation> | |
<property> | |
<name>maven.install.skip</name> | |
<value>true</value> | |
</property> | |
</activation> | |
<build> | |
<pluginManagement> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-install-plugin</artifactId> | |
<executions> | |
<execution> | |
<id>default-install</id> | |
<phase>none</phase> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</pluginManagement> | |
</build> | |
</profile> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment