-
Notifications
You must be signed in to change notification settings - Fork 14
/
publish.sbt
28 lines (24 loc) · 785 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
publishMavenStyle in ThisBuild := true
pomIncludeRepository in ThisBuild := { _ => false }
publishArtifact in Test in ThisBuild := false
publishTo in ThisBuild := sonatypePublishToBundle.value
pomExtra in ThisBuild :=
<url>https://github.com/shadaj/scalapy-numpy</url>
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/shadaj/scalapy-numpy.git</url>
<connection>https://github.com/shadaj/scalapy-numpy.git</connection>
</scm>
<developers>
<developer>
<id>shadaj</id>
<name>Shadaj Laddad</name>
<url>http://shadaj.me</url>
</developer>
</developers>