Skip to content

Instantly share code, notes, and snippets.

@256BitChris
Created October 30, 2018 16:47
Show Gist options
  • Save 256BitChris/0efee4269c25fd70bc7c0c89ef166ed2 to your computer and use it in GitHub Desktop.
Save 256BitChris/0efee4269c25fd70bc7c0c89ef166ed2 to your computer and use it in GitHub Desktop.
Repositories Settings for BitBucket Pipelines and CloudRepo
<!--
- The <repositories> tag is used when you wish to define a maven repository that you want to READ artifacts from.
-
- While not used in this example, we leave this here in this pom for completeness. If you want to read artifacts from
- the repositories that you configured above in <distributionManagement> then these are the tags you'd need.
-->
<repositories>
<repository>
<id>io.cloudrepo.maven.releases</id>
<name>CloudRepo Release Repositories</name>
<url>https://cloudrepo-examples.mycloudrepo.io/repositories/maven-releases</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>io.cloudrepo.maven.snapshots</id>
<name>CloudRepo Snapshots Repositories-</name>
<url>https://cloudrepo-examples.mycloudrepo.io/repositories/maven-snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment