-
Notifications
You must be signed in to change notification settings - Fork 18
/
build.sbt
53 lines (41 loc) · 1.28 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
name := "cronish"
organization := "com.github.philcali"
version := "0.1.5"
parallelExecution in Test := false
scalaVersion := "2.12.13"
crossScalaVersions := Seq(
"2.12.13",
"2.11.12"
)
resolvers += "Typesafe Repository" at "https://repo.typesafe.com/typesafe/releases/"
scalacOptions ++= Seq("-feature", "-language:implicitConversions", "-language:postfixOps")
libraryDependencies ++= Seq(
"com.github.philcali" %% "scalendar" % "0.1.5",
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.5",
"com.typesafe.akka" %% "akka-actor" % "2.4.17",
"org.scalatest" %% "scalatest" % "3.0.1" % "test"
)
publishMavenStyle := true
publishArtifact in Test := false
pomIncludeRepository := { x => false }
pomExtra := (
<url>https://github.com/philcali/cronish</url>
<licenses>
<license>
<name>The MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>[email protected]:philcali/cronish.git</url>
<connection>scm:git:[email protected]:philcali/cronish.git</connection>
</scm>
<developers>
<developer>
<id>philcali</id>
<name>Philip Cali</name>
<url>http://philcalicode.blogspot.com/</url>
</developer>
</developers>
)