Created
October 20, 2017 17:18
-
-
Save jacaetevha/d12c9dc913541a2da88a1837117ca8e3 to your computer and use it in GitHub Desktop.
Maven settings file for ISS projects
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.1.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<profiles> | |
<profile> | |
<repositories> | |
<repository> | |
<snapshots> | |
<enabled>false</enabled> | |
</snapshots> | |
<id>central</id> | |
<name>repo</name> | |
<url>http://vpna-cor-mvn003.ad.issgovernance.com:9091/artifactory/repo</url> | |
</repository> | |
<repository> | |
<snapshots /> | |
<id>snapshots</id> | |
<name>repo</name> | |
<url>http://vpna-cor-mvn003.ad.issgovernance.com:9091/artifactory/repo</url> | |
</repository> | |
</repositories> | |
<pluginRepositories> | |
<pluginRepository> | |
<snapshots> | |
<enabled>false</enabled> | |
</snapshots> | |
<id>central</id> | |
<name>repo</name> | |
<url>http://vpna-cor-mvn003.ad.issgovernance.com:9091/artifactory/repo</url> | |
</pluginRepository> | |
<pluginRepository> | |
<snapshots /> | |
<id>snapshots</id> | |
<name>repo</name> | |
<url>http://vpna-cor-mvn003.ad.issgovernance.com:9091/artifactory/repo</url> | |
</pluginRepository> | |
</pluginRepositories> | |
<id>artifactory</id> | |
</profile> | |
</profiles> | |
<activeProfiles> | |
<activeProfile>artifactory</activeProfile> | |
</activeProfiles> | |
</settings> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment