Skip to content

Instantly share code, notes, and snippets.

@lucafavatella
Last active June 27, 2020 09:53
Show Gist options
  • Save lucafavatella/be748bede49ea7065596c13d1f398e4b to your computer and use it in GitHub Desktop.
Save lucafavatella/be748bede49ea7065596c13d1f398e4b to your computer and use it in GitHub Desktop.
Maven settings.xml used during CI builds for various Cryptomator projects
<?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">
<servers>
<server>
<id>bintray-jcenter</id>
<username>cryptobot</username>
<password>${env.BINTRAY_API_KEY}</password>
</server>
</servers>
<profiles>
<profile>
<id>bintray</id>
<repositories>
<repository>
<id>bintray</id>
<name>Bintray JCenter</name>
<url>https://jcenter.bintray.com</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>central</id>
<name>Maven Central Repository</name>
<snapshots>
<enabled>false</enabled>
</snapshots>
<url>https://repo.maven.apache.org/maven2</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>bintray</id>
<name>Bintray JCenter</name>
<url>https://jcenter.bintray.com</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>central</id>
<name>Maven Central Repository</name>
<snapshots>
<enabled>false</enabled>
</snapshots>
<url>https://repo.maven.apache.org/maven2</url>
</pluginRepository>
</pluginRepositories>
</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