-
Notifications
You must be signed in to change notification settings - Fork 114
/
build.sbt
63 lines (52 loc) · 2.27 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
59
60
61
62
63
name := "akka-quartz-scheduler"
organization := "com.enragedginger"
version := "1.9.3-akka-2.6.x"
val Scala212Version = "2.12.13"
val Scala213Version = "2.13.8"
val Scala3Version = "3.1.3"
ThisBuild / scalaVersion := Scala3Version
ThisBuild / crossScalaVersions := Seq(Scala212Version, Scala213Version, Scala3Version)
ThisBuild / scalacOptions ++= Seq("-language:postfixOps")
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.6.19" % "provided",
"com.typesafe.akka" %% "akka-actor-typed" % "2.6.19" % "provided",
"org.quartz-scheduler" % "quartz" % "2.3.2"
exclude ("com.zaxxer", "HikariCP-java7"),
"com.typesafe.akka" %% "akka-testkit" % "2.6.19" % Test,
"com.typesafe.akka" %% "akka-actor-testkit-typed" % "2.6.19" % Test,
"org.specs2" %% "specs2-core" % "4.15.0" % Test,
"org.specs2" %% "specs2-junit" % "4.15.0" % 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.2.12" % 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>