-
Notifications
You must be signed in to change notification settings - Fork 33
/
build.sbt
76 lines (55 loc) · 2.16 KB
/
build.sbt
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
//import scoverage.ScoverageSbtPlugin.ScoverageKeys._
name := "scala-uri"
organization := "com.netaporter"
version := "0.4.16"
scalaVersion := "2.12.0"
crossScalaVersions := Seq("2.10.6", "2.11.8", "2.12.0")
def coverageEnabled(scalaVersion: String) = scalaVersion match {
case v if v startsWith "2.10" => false
case v if v startsWith "2.12" => false
case _ => true
}
lazy val updatePublicSuffixes = taskKey[Unit]("Updates the public suffix Trie at com.netaporter.uri.internet.PublicSuffixes")
updatePublicSuffixes := UpdatePublicSuffixTrie.generate()
//coverageOutputXML := coverageEnabled(scalaVersion.value)
//
//coverageOutputCobertua := coverageEnabled(scalaVersion.value)
//
//coverageHighlighting := coverageEnabled(scalaVersion.value)
publishMavenStyle := true
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
resolvers += "Sonatype OSS Releases" at "https://oss.sonatype.org/content/repositories/releases"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8", "-feature")
libraryDependencies += "org.parboiled" %% "parboiled" % "2.1.3"
libraryDependencies += "io.spray" %% "spray-json" % "1.3.2"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.0" % "test"
parallelExecution in Test := false
publishTo <<= version { (v: String) =>
val nexus = "https://oss.sonatype.org/"
if (v.trim.endsWith("SNAPSHOT"))
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
pomExtra := (
<url>https://github.com/net-a-porter/scala-uri</url>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>git@github.com:net-a-porter/scala-uri.git</url>
<connection>scm:git@github.com:net-a-porter/scala-uri.git</connection>
</scm>
<developers>
<developer>
<id>theon</id>
<name>Ian Forsey</name>
<url>http://theon.github.io</url>
</developer>
</developers>)