Skip to content

Instantly share code, notes, and snippets.

@gmatheu
Last active April 16, 2019 20:29
Show Gist options
  • Save gmatheu/e3d04fbc506982619c6a2605cfe6a19a to your computer and use it in GitHub Desktop.
Save gmatheu/e3d04fbc506982619c6a2605cfe6a19a to your computer and use it in GitHub Desktop.
AscentioTech's Bintray
<?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">
<profiles>
<profile>
<id>sonatype-repository</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<pluginRepositories>
<pluginRepository>
<id>sonatype</id>
<name>Sonatype Maven OSS Repository</name>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<url>https://oss.sonatype.org/content/groups/public</url>
</pluginRepository>
</pluginRepositories>
<repositories>
<repository>
<id>jenkins</id>
<name>Jenkins Repository</name>
<url>http://repo.jenkins-ci.org/releases</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>bintray</id>
<url>https://jcenter.bintray.com</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<snapshots>
<enabled>
false
</enabled>
</snapshots>
<id>
bintray-ascentio-tech-maven-thirdparty
</id>
<name>
bintray
</name>
<url>
https://dl.bintray.com/ascentio-tech/maven-thirdparty
</url>
</repository>
</repositories>
</profile>
</profiles>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment