forked from gitter-badger/sbt-aws-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
publish.sbt
41 lines (35 loc) · 967 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
37
38
39
40
41
publishMavenStyle := true
publishTo := sonatypePublishTo.value
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
sonatypeProfileName := "com.gilt"
pomExtra := {
<url>https://github.com/gilt/sbt-aws-lambda</url>
<scm>
<url>git@github.com:gilt/sbt-aws-lambda.git</url>
<connection>scm:git:git@github.com:gilt/sbt-aws-lambda.git</connection>
</scm>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>bstjohn</id>
<name>Brendan St John</name>
<url>https://github.com/stjohnb</url>
</developer>
<developer>
<id>fiadliel</id>
<name>Gary Coady</name>
<url>https://github.com/fiadliel</url>
</developer>
<developer>
<id>sullis</id>
<name>Sean Sullivan</name>
<url>https://github.com/sullis</url>
</developer>
</developers>
}