Skip to content

Commit

Permalink
Update deployment targets.
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Jun 13, 2012
1 parent dd0d2c8 commit 9d6ae77
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,11 @@
<junit.version>4.10</junit.version>
<easymock.version>3.1</easymock.version>

<!-- Snapshot Repository URL (override in ~/.m2/settings.xml profile) -->
<snapshot.repo.id>example-nexus</snapshot.repo.id>
<snapshot.repo.url>http://example.com/snapshots</snapshot.repo.url>
<!-- Deployment Repository URLs (override in ~/.m2/settings.xml profile) -->
<retrofit.repo.id>example-nexus</retrofit.repo.id>
<retrofit.repo.url>http://example.com/releases</retrofit.repo.url>
<retrofit.snapshot.repo.id>example-nexus</retrofit.snapshot.repo.id>
<retrofit.snapshot.repo.url>http://example.com/snapshots</retrofit.snapshot.repo.url>
</properties>

<scm>
Expand Down Expand Up @@ -173,9 +175,13 @@
</build>

<distributionManagement>
<repository>
<id>${retrofit.repo.id}</id>
<url>${retrofit.repo.url}</url>
</repository>
<snapshotRepository>
<id>${snapshot.repo.id}</id>
<url>${snapshot.repo.url}</url>
<id>${retrofit.snapshot.repo.id}</id>
<url>${retrofit.snapshot.repo.url}</url>
</snapshotRepository>
</distributionManagement>
</project>

0 comments on commit 9d6ae77

Please sign in to comment.