File tree 2 files changed +16
-2
lines changed
2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,21 @@ language: scala
5
5
env :
6
6
- ADOPTOPENJDK=8
7
7
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
10
23
11
24
notifications :
12
25
email :
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ enablePlugins(SbtPlugin)
2
2
3
3
name := " sbt-scala-module"
4
4
organization := " org.scala-lang.modules"
5
+ homepage := Some (url(" https://github.com/scala/sbt-scala-module" ))
5
6
licenses := Seq ((" Apache-2.0" , url(" https://www.apache.org/licenses/LICENSE-2.0" )))
6
7
7
8
addSbtPlugin(" com.typesafe.sbt" % " sbt-osgi" % " 0.9.6" )
You can’t perform that action at this time.
0 commit comments