Skip to content

Instantly share code, notes, and snippets.

@mgurov
Created June 10, 2016 07:14
Show Gist options
  • Save mgurov/def5027e1f9df3c2d9786bcbb18d8619 to your computer and use it in GitHub Desktop.
Save mgurov/def5027e1f9df3c2d9786bcbb18d8619 to your computer and use it in GitHub Desktop.
mvn settings.xml et al.
<profile>
<id>skipTests</id>
<properties>
<skipTests>true</skipTests>
</properties>
</profile>
<profile>
<id>dontGenerateBackupPoms</id>
<properties>
<generateBackupPoms>false</generateBackupPoms>
</properties>
</profile>
<activeProfiles>
<activeProfile>skipTests</activeProfile>
<activeProfile>dontGenerateBackupPoms</activeProfile>
</activeProfiles>
mvn -s ~/.m2/alternative/settings.xml \
org.apache.maven.plugins:maven-dependency-plugin:2.8:get \
-DrepoUrl=https://oss.sonatype.org/content/repositories/snapshots/ \
-Dartifact=io.gatling:gatling-maven-plugin:2.2.0-SNAPSHOT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment