-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
56 lines (44 loc) · 1.41 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
sbtPlugin := true
organization := "com.edc4it"
name := "sbt-activemq"
version := "1.0.0-SNAPSHOT"
scalaVersion := "2.10.4"
scalacOptions ++= Seq("-deprecation", "-feature")
libraryDependencies ++= Seq(
"org.apache.activemq" % "activemq-all" % "5.10.0",
"org.apache.xbean" % "xbean-spring" % "3.7",
"org.apache.activemq" % "activeio-core" % "3.1.4",
"org.springframework" % "spring-context" % "2.5.5"
)
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")
}
pomExtra := (
<url>https://github.com/edc4it/sbt-activemq/</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<scm>
<connection>scm:git:[email protected]:edc4it/sbt-activemq</connection>
<url>https://github.com/edc4it/sbt-activemq/</url>
</scm>
<developers>
<developer>
<name>Raphael Parree</name>
<email>[email protected]</email>
<organization>edc4it</organization>
</developer>
</developers>
)
pomIncludeRepository := { _ => false }
publishMavenStyle := true
publishArtifact in Test := false