forked from kovacshuni/koauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
48 lines (38 loc) · 1.16 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
import SonatypeKeys._
sonatypeSettings
profileName := "com.hunorkovacs"
organization := """com.hunorkovacs"""
name := """koauth"""
version := "1.0.0-SNAPSHOT"
scalaVersion := "2.11.1"
crossScalaVersions := Seq("2.10.4")
resolvers ++= Seq(
"Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/",
"Sonatype OSS Releases" at "https://oss.sonatype.org/content/repositories/releases"
)
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.3.4",
"org.specs2" %% "specs2" % "2.3.12",
"org.slf4j" % "slf4j-api" % "1.7.7"
)
pomExtra := {
<url>https://github.com/kovacshuni/koauth</url>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:github.com/kovacshuni/koauth</connection>
<developerConnection>scm:[email protected]:kovacshuni/koauth.git</developerConnection>
<url>github.com/kovacshuni/koauth</url>
</scm>
<developers>
<developer>
<id>kovacshuni</id>
<name>Hunor Kovács</name>
<url>www.hunorkovacs.com</url>
</developer>
</developers>
}