Skip to content
This repository has been archived by the owner on Jul 20, 2021. It is now read-only.

Commit

Permalink
added the third party repo from nexus
Browse files Browse the repository at this point in the history
  • Loading branch information
kiivihal committed Oct 2, 2012
1 parent 12cc0ca commit c0f32da
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,16 @@ object Build extends sbt.Build {

val delvingReleases = "Delving Releases Repository" at "http://development.delving.org:8081/nexus/content/repositories/releases"
val delvingSnapshots = "Delving Snapshot Repository" at "http://development.delving.org:8081/nexus/content/repositories/snapshots"
val delvingThirdParty = "Delving Third Party " at "http://development.delving.org:8081/nexus/content/repositories/thirdparty"

def delvingRepository(version: String) = if (version.endsWith("SNAPSHOT")) delvingSnapshots else delvingReleases

val commonResolvers = Seq(
"sonatype snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/",
"sonatype releases" at "https://oss.sonatype.org/content/repositories/releases/",
delvingSnapshots,
delvingReleases
delvingReleases,
delvingThirdParty
)

val appDependencies = Seq(
Expand Down

0 comments on commit c0f32da

Please sign in to comment.