File tree 7 files changed +29
-29
lines changed
7 files changed +29
-29
lines changed Original file line number Diff line number Diff line change 1
1
language : scala
2
2
3
- # Needed for openjdk6
4
- dist : precise
5
- sudo : required
6
- addons :
7
- hosts :
8
- - localhost
9
- hostname : localhost.local
10
-
11
3
env :
12
4
global :
13
5
# PGP_PASSPHRASE
18
10
- secure : " E6OE1MoZ4VQHRNtEyyKfmnj8Bj7uGpgHLmlvJR/iy7qdxBbNA8cEz/Qs64uTft5zfZ9bJsQhiuxLcTtFKYKFP4qvExz8FyilhmUwKjD5Eux4FAeBjDBeXBETM1JYFB+JYP9l8dcQecMeGpd46I52pLjYYmNyQQ1YpOvK29GIQLA="
19
11
20
12
script :
21
- # work around https://github.com/travis-ci/travis-ci/issues/9713
22
- - if [[ $JAVA_HOME = *java-6* ]]; then jdk_switcher use openjdk6; fi
23
- - java -version
24
13
- admin/build.sh
25
14
26
- addons :
27
- apt :
28
- packages :
29
- - openjdk-6-jdk
30
-
31
15
jdk :
32
- - openjdk6
33
16
- oraclejdk8
34
17
- openjdk11
18
+
35
19
notifications :
36
20
email :
37
21
Original file line number Diff line number Diff line change
1
+ all repositories in these organizations:
2
+
3
+ * [ scala] ( https://github.com/scala )
4
+ * [ scalacenter] ( https://github.com/scalacenter )
5
+ * [ lampepfl] ( https://github.com/lampepfl )
6
+
7
+ are covered by the Scala Code of Conduct: https://scala-lang.org/conduct/
Original file line number Diff line number Diff line change 198
198
distributed under the License is distributed on an "AS IS" BASIS,
199
199
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
200
See the License for the specific language governing permissions and
201
- limitations under the License.
201
+ limitations under the License.
Original file line number Diff line number Diff line change
1
+ Scala continuations
2
+ Copyright (c) 2010-2019 EPFL
3
+ Copyright (c) 2011-2019 Lightbend, Inc.
4
+
5
+ Scala includes software developed at
6
+ LAMP/EPFL (https://lamp.epfl.ch/) and
7
+ Lightbend, Inc. (https://www.lightbend.com/).
8
+
9
+ Licensed under the Apache License, Version 2.0 (the "License").
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
Original file line number Diff line number Diff line change @@ -4,17 +4,12 @@ import ScalaModulePlugin._
4
4
// plugin logic of build based on https://github.com/retronym/boxer
5
5
6
6
scalaVersionsByJvm in ThisBuild := {
7
- val j67 = List (" 2.11.12" )
8
- val j89 = List (" 2.12.6" , " 2.12.8" , " 2.13.0-M1" )
7
+ val vs = List (" 2.11.12" , " 2.12.8" )
9
8
// Map[JvmVersion, List[(ScalaVersion, UseForPublishing)]]
10
9
Map (
11
- 6 -> j67.map(_ -> true ),
12
- 7 -> j67.map(_ -> false ),
13
- 8 -> j89.map(_ -> true ),
14
- 9 -> j89.map(_ -> false ),
15
- 10 -> j89.map(_ -> false ),
16
- 11 -> j89.map(_ -> false ),
17
- 12 -> j89.map(_ -> false )
10
+ 8 -> vs.map(_ -> true ),
11
+ 11 -> vs.map(_ -> false ),
12
+ 12 -> vs.map(_ -> false )
18
13
)
19
14
}
20
15
Original file line number Diff line number Diff line change 1
- sbt.version =0.13.18
1
+ sbt.version =1.2.8
Original file line number Diff line number Diff line change 1
- addSbtPlugin(" org.scala-lang.modules" % " scala-module-plugin " % " 1 .0.8 " )
1
+ addSbtPlugin(" org.scala-lang.modules" % " sbt- scala-module" % " 2 .0.0 " )
You can’t perform that action at this time.
0 commit comments