-
-
Notifications
You must be signed in to change notification settings - Fork 142
/
release.sbt
54 lines (49 loc) · 1.41 KB
/
release.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
import com.typesafe.sbt.osgi.OsgiKeys
// OSGI bundles
lazy val jacksonOsgiSettings = osgiSettings ++ Seq(
OsgiKeys.exportPackage := Seq("com.fasterxml.jackson.module.scala.*"),
OsgiKeys.privatePackage := Seq()
)
lazy val jacksonProject = project.in(file(".")).enablePlugins(SbtOsgi).settings(jacksonOsgiSettings:_*)
Test / publishArtifact := false
pomIncludeRepository := { _ => false }
pomExtra := {
<url>https://github.com/FasterXML/jackson-module-scala</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>tatu</id>
<name>Tatu Saloranta</name>
<email>[email protected]</email>
</developer>
<developer>
<id>christopher</id>
<name>Christopher Currie</name>
<email>[email protected]</email>
</developer>
<developer>
<id>mbknor</id>
<name>Morten Kjetland</name>
<email>[email protected]</email>
</developer>
<developer>
<id>pjfanning</id>
<name>PJ Fanning</name>
<url>https://github.com/pjfanning</url>
</developer>
</developers>
<contributors>
<contributor>
<name>Nathaniel Bauernfeind</name>
</contributor>
<contributor>
<name>Anton Panasenko</name>
</contributor>
</contributors>
}