aboutsummaryrefslogtreecommitdiffstats
path: root/build.sbt
blob: e11bfd88cbcc5569117ed5583e3fc6ffece5b0f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name         := "scala-test-more"

organization := "com.iinteractive"

version      := "0.03"

description  := "Test library based on Perl's Test::More"

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"

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>
)