Created
July 28, 2017 08:00
-
-
Save O5ten/edbb43c9728bd7c07dfdd3ba5c4f36bc to your computer and use it in GitHub Desktop.
My most common settingsfile for maven
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
<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