Skip to content

Commit 001d519

Browse files
committed
prepare org.hammerlab release
1 parent 9cc4bd7 commit 001d519

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

build.sbt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,3 @@ scalacOptions ++= Seq(
2828
)
2929

3030
ScalariformSupport.formatSettings
31-

project.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ sbtPlugin := true
22

33
name := "sbt-dependency-graph"
44

5-
organization := "net.virtual-void"
5+
organization := "org.hammerlab"
66

7-
homepage := Some(url("http://github.com/jrudolph/sbt-dependency-graph"))
7+
homepage := Some(url("http://github.com/hammerlab/sbt-dependency-graph"))
88

9-
licenses in GlobalScope += "Apache License 2.0" -> url("https://github.com/jrudolph/sbt-dependency-graph/raw/master/LICENSE")
9+
licenses in GlobalScope += "Apache License 2.0" -> url("https://github.com/hammerlab/sbt-dependency-graph/raw/master/LICENSE")

project/plugins.sbt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ libraryDependencies += "org.scala-sbt" % "scripted-plugin" % sbtVersion.value
22

33
addSbtPlugin("com.typesafe.sbt" % "sbt-scalariform" % "1.2.1")
44
addSbtPlugin("com.dwijnand" % "sbt-dynver" % "2.0.0")
5+
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "1.1")

publish.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
publishTo := {
22
val nexus = "https://oss.sonatype.org/"
33
Some {
4-
if (version.value.trim.contains("+")) "snapshots" at nexus + "content/repositories/snapshots"
5-
else "releases" at nexus + "service/local/staging/deploy/maven2"
4+
if (isSnapshot.value) "snapshots" at nexus + "content/repositories/snapshots"
5+
else "releases" at nexus + "service/local/staging/deploy/maven2"
66
}
77
}
88

0 commit comments

Comments
 (0)