forked from enragedginger/akka-quartz-scheduler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
58 lines (47 loc) · 1.82 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
name := "akka-quartz-scheduler"
organization := "com.enragedginger"
version := "1.8.1-akka-2.5.x"
scalaVersion in ThisBuild := "2.13.0"
crossScalaVersions := Seq("2.11.8", "2.12.8", "2.13.0")
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.5.23" % "provided",
"org.quartz-scheduler" % "quartz" % "2.3.0",
// test dependencies
"com.typesafe.akka" %% "akka-testkit" % "2.5.23" % "test",
"org.specs2" %% "specs2-core" % "4.5.1" % "test",
"org.specs2" %% "specs2-junit" % "4.5.1" % "test",
"junit" % "junit" % "4.12" % "test",
"org.slf4j" % "slf4j-api" % "1.7.21" % "test",
"org.slf4j" % "slf4j-jcl" % "1.7.21" % "test",
"org.scalatest" %% "scalatest" % "3.0.8" % "test"
)
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
pomIncludeRepository := { _ => false }
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")
}
//useGpg := true
pomExtra := (
<url>https://github.com/enragedginger/akka-quartz-scheduler</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/enragedginger/akka-quartz-scheduler.git</url>
<connection>https://github.com/enragedginger/akka-quartz-scheduler.git</connection>
</scm>
<developers>
<developer>
<name>Stephen M. Hopper</name>
<email>[email protected]</email>
</developer>
</developers>)