forked from ebiznext/sbt-cxf-wsdl2java
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.sbt
54 lines (43 loc) · 1.38 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
52
53
54
sbtPlugin := true
name := "sbt-cxf-wsdl2java"
organization := "io.github.borisnaguet"
version := "0.2.8"
crossSbtVersions := List("0.13.17", "1.1.1")
publishMavenStyle := false
//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
pomIncludeRepository := { _ => false }
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
bintrayRepository := "ivy"
bintrayPackageLabels := Seq("sbt", "plugin", "cxf")
pomExtra := (
<url>https://github.com/BorisNaguet/sbt-cxf-wsdl2java</url>
<licenses>
<license>
<name>MIT</name>
<url>http://opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>[email protected]:BorisNaguet/sbt-cxf-wsdl2java.git</url>
<connection>scm:git:[email protected]:BorisNaguet/sbt-cxf-wsdl2java.git</connection>
</scm>
<developers>
<developer>
<id>smanciot</id>
<name>Stéphane Manciot</name>
<url>http://www.linkedin.com/in/smanciot</url>
</developer>
<developer>
<id>BorisNaguet</id>
<name>Boris Naguet</name>
<url>https://github.com/BorisNaguet</url>
</developer>
</developers>)