Skip to content
This repository has been archived by the owner on Feb 25, 2020. It is now read-only.

Commit

Permalink
Removed reportgrid nexus from the set of resolvers/publishers
Browse files Browse the repository at this point in the history
Issues #536, #535, #520, #519
  • Loading branch information
djspiewak committed Oct 30, 2013
1 parent 56ceb4c commit 5271409
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions project/Build.scala
Expand Up @@ -37,24 +37,14 @@ object PlatformBuild extends Build {

val nexusSettings : Seq[Project.Setting[_]] = Seq(
resolvers ++= Seq(
"ReportGrid repo" at "http://nexus.reportgrid.com/content/repositories/releases",
"ReportGrid repo (public)" at "http://nexus.reportgrid.com/content/repositories/public-releases",
"ReportGrid snapshot repo" at "http://nexus.reportgrid.com/content/repositories/snapshots",
"ReportGrid snapshot repo (public)" at "http://nexus.reportgrid.com/content/repositories/public-snapshots",
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/",
"Maven Repo 1" at "http://repo1.maven.org/maven2/",
"Guiceyfruit" at "http://guiceyfruit.googlecode.com/svn/repo/releases/",
"Sonatype Releases" at "http://oss.sonatype.org/content/repositories/releases/",
"Sonatype Snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/"
),

credentials += Credentials(Path.userHome / ".ivy2" / ".rgcredentials"),

publishTo <<= (version) { version: String =>
val nexus = "http://nexus.reportgrid.com/content/repositories/"
if (version.trim.endsWith("SNAPSHOT")) Some("snapshots" at nexus+"snapshots/")
else Some("releases" at nexus+"releases/")
}
credentials += Credentials(Path.userHome / ".ivy2" / ".rgcredentials")
)

val blueeyesVersion = "1.0.0-M9.5"
Expand Down

0 comments on commit 5271409

Please sign in to comment.