forked from EOS-TS/pact-jvm-provider-spring-mvc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
56 lines (46 loc) · 1.72 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
name := "pact-jvm-provider-spring-mvc"
version := "0.5.0"
organization := "com.reagroup"
scalaVersion := "2.11.8"
crossScalaVersions := Seq("2.10.4", "2.11.4")
sbtVersion := "0.13.12"
libraryDependencies ++= Seq(
"au.com.dius" %% "pact-jvm-model" % "3.2.12",
"au.com.dius" %% "pact-jvm-consumer-junit" % "3.2.12",
"org.springframework" % "spring-test" % "4.3.2.RELEASE",
"org.springframework" % "spring-webmvc" % "4.3.2.RELEASE",
"org.springframework" % "spring-context" % "4.3.2.RELEASE",
"org.springframework" % "spring-core" % "4.3.2.RELEASE",
"junit" % "junit" % "4.12",
"org.skyscreamer" % "jsonassert" % "1.2.3",
"javax.servlet" % "javax.servlet-api" % "3.0.1",
"org.mockito" % "mockito-core" % "1.9.5",
"com.novocode" % "junit-interface" % "0.11" % "test", // in order to run Junit tests in SBT
"org.specs2" %% "specs2" % "2.4.2" % "test"
)
// publish to sonatype
import xerial.sbt.Sonatype.SonatypeKeys._
sonatypeSettings
profileName := "com.reagroup"
pomExtra := {
<url>https://github.com/realestate-com-au/pact-jvm-provider-spring-mvc</url>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/realestate-com-au/pact-jvm-provider-spring-mvc.git</connection>
<developerConnection>scm:git:[email protected]:realestate-com-au/pact-jvm-provider-spring-mvc.git</developerConnection>
<url>https://github.com/realestate-com-au/pact-jvm-provider-spring-mvc</url>
</scm>
<developers>
<developer>
<id>freewind</id>
<name>Peng Li</name>
<url>http://github.com/freewind/</url>
<email>[email protected]</email>
</developer>
</developers>
}