-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.sbt
67 lines (49 loc) · 1.85 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
64
65
66
67
name := "geolocation"
version := "2.1.0"
scalaVersion := "2.11.7"
lazy val root = (project in file(".")).enablePlugins(PlayJava)
libraryDependencies ++= Seq(
javaCore,
javaWs,
cache,
"org.mockito" % "mockito-core" % "2.0.43-beta" % Test,
"com.jayway.awaitility" % "awaitility" % "1.7.0" % Test
)
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-q")
organization := "com.edulify"
organizationName := "Edulify.com"
organizationHomepage := Some(new URL("https://edulify.com"))
publishMavenStyle := true
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
publishTo := {
if (version.value.trim.endsWith("SNAPSHOT"))
Some(Resolver.sonatypeRepo("snapshots"))
else
Some("releases" at "https://oss.sonatype.org/service/local/staging/deploy/maven2")
}
startYear := Some(2013)
description := "This is a geolocation module for Playframework."
licenses := Seq("The Apache Software License, Version 2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt"))
homepage := Some(url("http://edulify.github.io/play-geolocation-module.edulify.com/"))
pomExtra :=
<scm>
<url>https://github.com/edulify/play-geolocation-module.edulify.com</url>
<connection>scm:git:[email protected]:edulify/play-geolocation-module.edulify.com.git</connection>
<developerConnection>scm:git:https://github.com/edulify/play-geolocation-module.edulify.com.git</developerConnection>
</scm>
<developers>
<developer>
<id>megazord</id>
<name>Megazord</name>
<email>contact [at] edulify.com</email>
<url>https://github.com/megazord</url>
</developer>
<developer>
<id>ranierivalenca</id>
<name>Ranieri Valença</name>
<email>ranierivalenca [at] edulify.com</email>
<url>https://github.com/ranierivalenca</url>
</developer>
</developers>
scalacOptions := Seq("-feature", "-deprecation")