Created
October 30, 2018 16:47
-
-
Save 256BitChris/0efee4269c25fd70bc7c0c89ef166ed2 to your computer and use it in GitHub Desktop.
Repositories Settings for BitBucket Pipelines and CloudRepo
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
<!-- | |
- 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