Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Configuring Artifactory for building uPortal is very simple. You just need to add 3 repositories to the remote repositories.

Code Block
xml
xml
titleAdding remote repositoriesxml
<remoteRepository>
   <key>jasig.org.repo</key>
   <description>JA-SIG Maven2 Repository</description>
   <handleReleases>true</handleReleases>
   <handleSnapshots>true</handleSnapshots>
   <url>http://developer.ja-sig.org/maven2</url>
</remoteRepository>
<remoteRepository>
   <key>apache.snapshots</key>
   <description>Apache Maven2 Snapshots</description>
   <handleReleases>false</handleReleases>
   <handleSnapshots>true</handleSnapshots>
   <url>http://people.apache.org/repo/m2-snapshot-repository</url>
</remoteRepository>
<remoteRepository>
   <key>dist.codehaus.org.mule</key>
   <description>Mule Repository for Maven 2</description>
   <handleReleases>true</handleReleases>
   <handleSnapshots>true</handleSnapshots>
   <url>http://dist.codehaus.org/mule/dependencies/maven2/</url>
</remoteRepository>

...