forked from sirthias/pegdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
73 lines (51 loc) · 1.67 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
name := "pegdown"
version := "1.5.0"
homepage := Some(new URL("http://pegdown.org"))
organization := "org.pegdown"
organizationHomepage := Some(new URL("http://pegdown.org"))
description := "A Java 1.6+ library providing a clean and lightweight markdown processor"
startYear := Some(2009)
licenses := Seq("Apache 2" -> new URL("http://www.apache.org/licenses/LICENSE-2.0.txt"))
javacOptions ++= Seq(
"-g", // required for byte-code rewriting in parboiled-java!
"-deprecation",
"-target", "1.6",
"-source", "1.6",
"-encoding", "utf8",
"-Xlint:unchecked"
)
javacOptions in doc := Seq(
"-source", "1.6",
"-encoding", "utf8"
)
scalaVersion := "2.11.5"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
libraryDependencies ++= Seq(
"org.parboiled" % "parboiled-java" % "1.1.7",
"net.sf.jtidy" % "jtidy" % "r938" % "test",
"org.specs2" %% "specs2-core" % "2.4.16" % "test"
)
// publishing
crossPaths := false
autoScalaLibrary := false
publishMavenStyle := true
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
useGpg := true
pgpSigningKey := Some(-2321133875171851978L)
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 :=
<scm>
<url>[email protected]:sirthias/pegdown.git</url>
<connection>scm:git:[email protected]:sirthias/pegdown.git</connection>
</scm>
<developers>
<developer>
<id>sirthias</id>
<name>Mathias Doenitz</name>
</developer>
</developers>