Skip to content

Instantly share code, notes, and snippets.

@yuu-nkjm
Created May 12, 2016 06:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save yuu-nkjm/c1e505f884ac0fbd15bc9068fc915397 to your computer and use it in GitHub Desktop.
Save yuu-nkjm/c1e505f884ac0fbd15bc9068fc915397 to your computer and use it in GitHub Desktop.
sample of settings.xml
<?xml version="1.0" encoding="UTF-8"?>
<settings>
<activeProfiles>
<activeProfile>nkjmlab-nexus</activeProfile>
</activeProfiles>
<mirrors>
<mirror>
<id>nkjmlab-nexus</id>
<mirrorOf>*</mirrorOf>
<url>http://maven.nkjmlab.org/nexus/content/groups/public </url>
</mirror>
</mirrors>
<profiles>
<profile>
<id>nkjmlab-nexus</id>
<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>
<properties>
<maven.javadoc.skip>true</maven.javadoc.skip>
<additionalparam>-Xdoclint:none</additionalparam>
</properties>
</profile>
</profiles>
<servers>
<server>
<id>nkjmlab-releases</id>
<username>deployment</username>
<password>********</password>
</server>
<server>
<id>nkjmlab-snapshots</id>
<username>deployment</username>
<password>********</password>
</server>
</servers>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment