-
Notifications
You must be signed in to change notification settings - Fork 1
/
publish.sbt
36 lines (34 loc) · 1004 Bytes
/
publish.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
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")
}
}
publishMavenStyle := true
pomExtra := {
<url>https://github.com/EconomicSL/auctions</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:github.com/EconomicSL/auctions.git</connection>
<developerConnection>scm:git:[email protected]/EconomicSL/auctions.git</developerConnection>
<url>github.com/EconomicSL/auctions.git</url>
</scm>
<developers>
<developer>
<id>davidrpugh</id>
<name>David R. Pugh</name>
<url>http://davidrpugh.github.io/</url>
</developer>
<developer>
<id>bherd-rb</id>
<name>Benjamin Herd</name>
</developer>
</developers>
}