-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
52 lines (33 loc) · 1007 Bytes
/
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
import Dependencies._
organization := "com.gabechurch"
scalaVersion := "2.11.8"
version := "0.1.0"
name := "ParserTest"
//useGpg := true
libraryDependencies += "com.vladsch.flexmark" % "flexmark-all" % "0.28.16"
pomIncludeRepository := { _ => false }
licenses := Seq("BSD-style" -> url("http://www.opensource.org/licenses/bsd-license.php"))
homepage := Some(url("http://example.com"))
scmInfo := Some(
ScmInfo(
url("https://github.com/your-account/your-project"),
"scm:https://github.com/GabeChurch/ParseMarkdownScala.git"
)
)
developers := List(
Developer(
id = "com.gabechurch",
name = "Gabe Church",
url = url("http://gabechurch.com")
)
)
publishMavenStyle := true
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
publishArtifact in Test := false
pgpReadOnly := false