-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
33 lines (30 loc) · 998 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
import Dependencies._
lazy val root = (project in file(".")).settings(
inThisBuild(
List(
organization := "org.jsonfeed",
scalaVersion := "2.12.3",
version := "0.1.0-SNAPSHOT"
)),
name := "scala-json-feed",
libraryDependencies += scalaTest % Test,
libraryDependencies ++= circe
)
lazy val reader = (project in file("examples/feed_reader")).settings(
inThisBuild(
List(
organization := "org.jsonfeed",
scalaVersion := "2.12.3",
version := "0.1.0"
)),
name := "feed-reader"
).dependsOn(root)
homepage := Some(url("https://github.com/chobeat/scala-json-feed"))
scmInfo := Some(ScmInfo(url("https://github.com/chobeat/scala-json-feed"),
"[email protected]:chobeat/scala-json-feed.git"))
developers += Developer("chobeat",
"Simone Robutti",
url("https://github.com/chobeat"))
licenses += ("GPL", url("https://github.com/chobeat/scala-json-feed/blob/master/LICENSE"))
pomIncludeRepository := (_ => false)