-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.sbt
47 lines (38 loc) · 1.18 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
version := "1.0.0-SNAPSHOT"
organization := "com.actimust"
scalaVersion := "2.12.3"
name := "play-spring-loader"
crossPaths := false
lazy val root = project in file(".")
libraryDependencies ++= Seq(
"com.typesafe.play" %% "play" % "2.6.6",
"org.springframework" % "spring-context" % "4.3.5.RELEASE"
)
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")
}
pomIncludeRepository := { _ => false }
pomExtra :=
<url>https://github.com/remithieblin/play-spring-loader</url>
<licenses>
<license>
<name>BSD-style</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>[email protected]:remithieblin/play-spring-loader.git</url>
<connection>scm:git:[email protected]:remithieblin/play-spring-loader.git</connection>
</scm>
<developers>
<developer>
<id>remi.thieblin</id>
<name>Remi Thieblibn</name>
</developer>
</developers>