From d1259ee08625881adb71f788f082fa7955185c82 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 6 Mar 2013 17:30:18 -0600 Subject: add deployment information --- build.sbt | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) 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 := ( + + git@github.com:doy/scala-test-more.git + scm:git:git@github.com:doy/scala-test-more.git + + + + doy + Jesse Luehrs + http://tozt.net/ + + +) -- cgit v1.2.3-54-g00ecf