-
Notifications
You must be signed in to change notification settings - Fork 22
/
build.sbt
33 lines (28 loc) · 934 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
organization := "au.id.jazzy"
name := "play-geojson"
scalaVersion := "2.13.0"
crossScalaVersions := Seq("2.12.12", "2.13.3")
libraryDependencies ++= Seq(
"com.typesafe.play" %% "play-json" % "2.8.1" % "provided",
"org.specs2" %% "specs2-core" % "4.10.2" % "test"
)
resolvers += "Scalaz Bintray Repo" at "https://dl.bintray.com/scalaz/releases"
homepage := Some(url("https://github.com/jroper/play-geojson"))
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0"))
pomExtra := {
<scm>
<url>https://github.com/jroper/play-geojson</url>
<connection>scm:git:[email protected]:jroper/play-geojson.git</connection>
</scm>
<developers>
<developer>
<id>jroper</id>
<name>James Roper</name>
<url>https://jazzy.id.au</url>
</developer>
</developers>
}
pomIncludeRepository := { _ => false }
// Release settings
bintrayRepository := "maven"
bintrayPackage := "play-geojson"