-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
51 lines (41 loc) · 1.23 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
sbtPlugin := true
organization := "com.github.tototoshi"
name := "sbt-automkcol"
crossSbtVersions := Seq("0.13.17", "1.1.0")
version := "2.1.0"
libraryDependencies ++= Seq(
"org.scalaj" %% "scalaj-http" % "2.3.0"
)
publishMavenStyle := true
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (version.value.trim.endsWith("SNAPSHOT")) Some("snapshots" at nexus + "content/repositories/snapshots")
else Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
publishArtifact in Test := false
pomExtra := (
<url>https://github.com/tototoshi/sbt-automkcol</url>
<licenses>
<license>
<name>Eclipse Public License v1.0</name>
<url>http://www.eclipse.org/legal/epl-v10.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>git@github.com:tototoshi/sbt-automkcol</url>
<connection>scm:git:git@github.com:tototoshi/sbt-automkcol.git</connection>
</scm>
<developers>
<developer>
<id>diversit</id>
<name>Joost den Boer</name>
<url>http://www.diversit.eu</url>
</developer>
<developer>
<id>tototoshi</id>
<name>Toshiyuki Takahashi</name>
<url>https://github.com/tototoshi</url>
</developer>
</developers>
)