Skip to content

Commit

Permalink
Default shippable settings added for projects
Browse files Browse the repository at this point in the history
  • Loading branch information
robertcsakany committed Apr 15, 2015
1 parent 9c079ab commit a35d7ca
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions shippable-settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<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>livesense-distribution-snapshots</id>
<username>${CI_DEPLOY_USERNAME}</username>
<password>${CI_DEPLOY_PASSWORD}</password>
</server>
<server>
<id>livesense-distribution-releases</id>
<username>${CI_DEPLOY_USERNAME}</username>
<password>${CI_DEPLOY_PASSWORD}</password>
</server>
<server>
<id>livesense-distribution-staging</id>
<username>${CI_DEPLOY_USERNAME}</username>
<password>${CI_DEPLOY_PASSWORD}</password>
</server>
</servers>
<profiles>
<profile>
<id>sonatype-oss</id>
<repositories>
<repository>
<id>sonatype-oss-snapshot</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>sonatype-oss</activeProfile>
</activeProfiles>
</settings>

0 comments on commit a35d7ca

Please sign in to comment.