Skip to content

Instantly share code, notes, and snippets.

@ciberkleid
Last active April 17, 2019 20:47
Show Gist options
  • Save ciberkleid/9e8c89fcd059b21425cab97071d02ba3 to your computer and use it in GitHub Desktop.
Save ciberkleid/9e8c89fcd059b21425cab97071d02ba3 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8" ?>
<settings xsi:schemaLocation='http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd'
xmlns='http://maven.apache.org/SETTINGS/1.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
<servers>
<server>
<id>bintray</id>
<username>${env.M2_SETTINGS_REPO_USERNAME}</username>
<password>${env.M2_SETTINGS_REPO_PASSWORD}</password>
</server>
</servers>
<profiles>
<profile>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-ciberkleid-maven-repo</id>
<name>bintray</name>
<url>https://dl.bintray.com/ciberkleid/maven-repo</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-ciberkleid-maven-repo</id>
<name>bintray-plugins</name>
<url>https://dl.bintray.com/ciberkleid/maven-repo</url>
</pluginRepository>
</pluginRepositories>
<id>bintray</id>
</profile>
</profiles>
<activeProfiles>
<activeProfile>bintray</activeProfile>
</activeProfiles>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment