Skip to content

Instantly share code, notes, and snippets.

@O5ten
Created July 28, 2017 08:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save O5ten/edbb43c9728bd7c07dfdd3ba5c4f36bc to your computer and use it in GitHub Desktop.
Save O5ten/edbb43c9728bd7c07dfdd3ba5c4f36bc to your computer and use it in GitHub Desktop.
My most common settingsfile for maven
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
https://maven.apache.org/xsd/settings-1.0.0.xsd">
<profiles>
<profile>
<id>home</id>
<repositories>
<repository>
<id>smartbear</id>
<name>SmartBear Repository</name>
<url>http://www.soapui.org/repository/maven2</url>
</repository>
<repository>
<id>maven</id>
<name>maven central</name>
<url>http://repo1.maven.org/maven2</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>smartbear-sweden-plugin-repository</id>
<url>http://www.soapui.org/repository/maven2</url>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>home</activeProfile>
</activeProfiles>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment