Skip to content

Commit

Permalink
Crossing-Tech internal nexus for nightly build
Browse files Browse the repository at this point in the history
  • Loading branch information
Christophe Pache committed Aug 27, 2015
1 parent f9995f2 commit 433e497
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 4 additions & 2 deletions project/Publish.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,17 @@ import sbt._
object Publish {

lazy val settings = Seq(
resolvers += "Crossing-Tech Nexus" at "http://nexus.xtech.io/content/groups/development",
credentials += Credentials(Path.userHome / ".sbt" / ".credentials"),
publishMavenStyle := true,
publishArtifact in Test := false,
pomIncludeRepository := { _ => false },
publishTo := {
val nexus = "https://oss.sonatype.org/"
val nexus = "https://nexus.xtech.io/"
if (isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
Some("releases" at nexus + "content/repositories/staging")
},
pomExtra := (<inceptionYear>2014</inceptionYear>
<url>http://www.crossing-tech.com</url>
Expand Down
3 changes: 3 additions & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.7.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-pgp" % "0.8.3")

addSbtPlugin("com.github.gseitz" % "sbt-release" % "0.8.5")

addSbtPlugin("no.arktekk.sbt" % "aether-deploy" % "0.13")

0 comments on commit 433e497

Please sign in to comment.