intial release
This commit is contained in:
@@ -0,0 +1,80 @@
|
||||
<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">
|
||||
|
||||
<servers>
|
||||
<server>
|
||||
<id>nexus.public</id>
|
||||
<username>${env.MAVEN_USERNAME}</username>
|
||||
<password>${env.MAVEN_PASSWORD}</password>
|
||||
</server>
|
||||
<server>
|
||||
<id>archiva.internal</id>
|
||||
<username>${env.MAVEN_USERNAME}</username>
|
||||
<password>${env.MAVEN_PASSWORD}</password>
|
||||
</server>
|
||||
<server>
|
||||
<id>Nexus.snapshots</id>
|
||||
<username>${env.MAVEN_USERNAME}</username>
|
||||
<password>${env.MAVEN_PASSWORD}</password>
|
||||
</server>
|
||||
</servers>
|
||||
|
||||
<mirrors>
|
||||
<mirror>
|
||||
<id>nexus.public</id>
|
||||
<url>${env.MAVEN_REPO_URL}</url>
|
||||
<mirrorOf>*</mirrorOf>
|
||||
</mirror>
|
||||
<mirror>
|
||||
<id>archiva.internal</id>
|
||||
<url>${env.MAVEN_REPO_RELEASES_URL}</url>
|
||||
<mirrorOf>*</mirrorOf>
|
||||
</mirror>
|
||||
<mirror>
|
||||
<id>nexus.snapshots</id>
|
||||
<url>${env.MAVEN_REPO_SNAPSHOTS_URL}</url>
|
||||
<mirrorOf>nexus.snapshots</mirrorOf>
|
||||
</mirror>
|
||||
</mirrors>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>biters</id>
|
||||
<activation>
|
||||
<activeByDefault>true</activeByDefault>
|
||||
</activation>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>nexus.public</id>
|
||||
<name>Nexus Maven Public Repository</name>
|
||||
<url>${env.MAVEN_REPO_URL}</url>
|
||||
<releases><enabled>true</enabled></releases>
|
||||
<snapshots><enabled>true</enabled></snapshots>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>archiva.internal</id>
|
||||
<name>Nexus Managed Internal Repository</name>
|
||||
<url>${env.MAVEN_REPO_RELEASES_URL}</url>
|
||||
<releases><enabled>true</enabled></releases>
|
||||
<snapshots><enabled>false</enabled></snapshots>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>nexus.snapshots</id>
|
||||
<name>Nexus Managed Snapshots Repository</name>
|
||||
<url>${env.MAVEN_REPO_SNAPSHOTS_URL}</url>
|
||||
<releases><enabled>false</enabled></releases>
|
||||
<snapshots><enabled>true</enabled></snapshots>
|
||||
</repository>
|
||||
</repositories>
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>nexus.public</id>
|
||||
<url>${env.MAVEN_REPO_URL}</url>
|
||||
<releases><enabled>true</enabled></releases>
|
||||
<snapshots><enabled>true</enabled></snapshots>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
</profile>
|
||||
</profiles>
|
||||
</settings>
|
||||
Reference in New Issue
Block a user