Created
September 18, 2015 09:06
-
-
Save jstrachan/936c022ba1561ed0d18f to your computer and use it in GitHub Desktop.
hack to build against a sonatype release before its been sync'd...
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
| ... | |
| <profile> | |
| <id>sonatypeReleases</id> | |
| <repositories> | |
| <repository> | |
| <id>releases.sonatype.org</id> | |
| <name>SonaType Releases</name> | |
| <url>https://oss.sonatype.org/content/repositories/releases</url> | |
| </repository> | |
| </repositories> | |
| <pluginRepositories> | |
| <pluginRepository> | |
| <id>releases.sonatype.org</id> | |
| <name>SonaType Releases</name> | |
| <url>https://oss.sonatype.org/content/repositories/releases</url> | |
| <snapshots> | |
| <enabled>false</enabled> | |
| </snapshots> | |
| <releases> | |
| <enabled>true</enabled> | |
| </releases> | |
| </pluginRepository> | |
| </pluginRepositories> | |
| </profile> | |
| ... | |
| <activeProfiles> | |
| <activeProfile>sonatypeReleases</activeProfile> | |
| ... | |
| </activeProfiles> | |
| </settings> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment