aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-03-06 17:30:18 -0600
committerJesse Luehrs <doy@tozt.net>2013-03-06 17:30:18 -0600
commitd1259ee08625881adb71f788f082fa7955185c82 (patch)
tree275ff9be09b40f559fea00e4b066262cd17e09ca
parent7efb2caf7d8832a7d3a9d2ac55862e43267a3eb2 (diff)
downloadscala-test-more-d1259ee08625881adb71f788f082fa7955185c82.tar.gz
scala-test-more-d1259ee08625881adb71f788f082fa7955185c82.zip
add deployment information
-rw-r--r--build.sbt30
1 files changed, 30 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
index 2f2a2fc..2945bbb 100644
--- a/build.sbt
+++ b/build.sbt
@@ -2,6 +2,12 @@ name := "scala-test-more"
version := "0.01"
+homepage := Some(url("https://github.com/doy/scala-test-more"))
+
+licenses := Seq(
+ "MIT License" -> url("http://www.opensource.org/licenses/mit-license.php")
+)
+
scalaVersion := "2.10.0"
libraryDependencies += "org.scala-tools.testing" % "test-interface" % "0.5"
@@ -9,3 +15,27 @@ libraryDependencies += "org.scala-tools.testing" % "test-interface" % "0.5"
scalacOptions ++= Seq("-deprecation", "-unchecked", "-feature")
testFrameworks += new TestFramework("com.iinteractive.test.sbt.Framework")
+
+publishMavenStyle := true
+
+publishArtifact in Test := false
+
+publishTo := Some(
+ "releases" at "https://oss.sonatype.org/service/local/staging/deploy/maven2"
+)
+
+pomIncludeRepository := { _ => false }
+
+pomExtra := (
+ <scm>
+ <url>git@github.com:doy/scala-test-more.git</url>
+ <connection>scm:git:git@github.com:doy/scala-test-more.git</connection>
+ </scm>
+ <developers>
+ <developer>
+ <id>doy</id>
+ <name>Jesse Luehrs</name>
+ <url>http://tozt.net/</url>
+ </developer>
+ </developers>
+)