Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sdabbour-stratio/81bd1d00270b05c79dc73a7ef3721030 to your computer and use it in GitHub Desktop.
Save sdabbour-stratio/81bd1d00270b05c79dc73a7ef3721030 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<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 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<interactiveMode/>
<usePluginRegistry/>
<offline/>
<pluginGroups/>
<servers/>
<mirrors><mirror>
<id>stratio</id>
<url>http://niquel.stratio.com/repository/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
<!-- <mirror>-->
<!-- <id>pegaso</id>-->
<!-- <mirrorOf>*</mirrorOf>-->
<!-- <name>Pegaso Repository</name>-->
<!-- <url>https://nexus.pegaso.int/repository/maven-public</url>-->
<!-- </mirror>-->
</mirrors>
<profiles>
<profile>
<id>nexus</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>central</id>
<url>http://central</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>http://central</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment