Created
November 11, 2019 07:25
-
-
Save yintro4ha/b42eda0e261e0c159678f0492835165b to your computer and use it in GitHub Desktop.
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"> | |
<servers> | |
<server> | |
<username>${security.getCurrentUsername()}</username> | |
<password>${security.getEscapedEncryptedPassword()!"*** Insert encrypted password here ***"}</password> | |
<id>central</id> | |
</server> | |
<server> | |
<username>${security.getCurrentUsername()}</username> | |
<password>${security.getEscapedEncryptedPassword()!"*** Insert encrypted password here ***"}</password> | |
<id>snapshots</id> | |
</server> | |
</servers> | |
<profiles> | |
<profile> | |
<repositories> | |
<repository> | |
<snapshots> | |
<enabled>false</enabled> | |
</snapshots> | |
<id>central</id> | |
<name>libs-release</name> | |
<url>http://178.128.25.98/artifactory/libs-release</url> | |
</repository> | |
<repository> | |
<snapshots /> | |
<id>snapshots</id> | |
<name>libs-snapshot</name> | |
<url>http://178.128.25.98/artifactory/libs-snapshot</url> | |
</repository> | |
</repositories> | |
<pluginRepositories> | |
<pluginRepository> | |
<snapshots> | |
<enabled>false</enabled> | |
</snapshots> | |
<id>central</id> | |
<name>libs-release</name> | |
<url>http://178.128.25.98/artifactory/libs-release</url> | |
</pluginRepository> | |
<pluginRepository> | |
<snapshots /> | |
<id>snapshots</id> | |
<name>libs-snapshot</name> | |
<url>http://178.128.25.98/artifactory/libs-snapshot</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