File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,21 @@ language: scala
55env :
66 - ADOPTOPENJDK=8
77
8- script :
9- - sbt test
8+ before_install :
9+ - git fetch --tags
10+
11+ stages :
12+ - name : test
13+ - name : release
14+ if : ((branch = master AND type = push) OR (tag IS present)) AND NOT fork
15+
16+ jobs :
17+ include :
18+ - stage : test
19+ name : test
20+ script : sbt test
21+ - stage : release
22+ script : sbt ci-release
1023
1124notifications :
1225 email :
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ enablePlugins(SbtPlugin)
22
33name := " sbt-scala-module"
44organization := " org.scala-lang.modules"
5+ homepage := Some (url(" https://github.com/scala/sbt-scala-module" ))
56licenses := Seq ((" Apache-2.0" , url(" https://www.apache.org/licenses/LICENSE-2.0" )))
67
78addSbtPlugin(" com.typesafe.sbt" % " sbt-osgi" % " 0.9.6" )
You can’t perform that action at this time.
0 commit comments