File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,6 @@ stages:
10
10
script : sbt "++$TRAVIS_SCALA_VERSION test"
11
11
jobs :
12
12
include :
13
- - scala : 2.10.7
14
- jdk : openjdk7
15
13
- scala : 2.10.7
16
14
- scala : 2.11.12
17
15
before_install :
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ val scala210 = "2.10.7"
5
5
val scala211 = " 2.11.12"
6
6
val scala212 = " 2.12.6"
7
7
val scala213 = " 2.13.0-M5"
8
- val baseSettings = Seq (
8
+
9
+ inThisBuild(List (
9
10
organization := " com.lihaoyi" ,
10
11
name := " sourcecode" ,
11
12
scalaVersion := scala211,
@@ -18,10 +19,10 @@ val baseSettings = Seq(
18
19
name = " Li Haoyi" ,
19
20
url = url(" https://github.com/lihaoyi" )
20
21
)
21
- )
22
+ ))
22
23
23
- baseSettings
24
24
skip in publish := true
25
+ crossScalaVersions := List () // required for `++2.12.6 test` to ignore native project
25
26
26
27
def macroDependencies (version : String ) =
27
28
Seq (
@@ -36,7 +37,6 @@ def macroDependencies(version: String) =
36
37
37
38
lazy val sourcecode = crossProject(JSPlatform , JVMPlatform , NativePlatform )
38
39
.settings(
39
- baseSettings,
40
40
libraryDependencies ++= macroDependencies(scalaVersion.value),
41
41
test in Test := (run in Test ).toTask(" " ).value,
42
42
unmanagedSourceDirectories in Compile ++= {
Original file line number Diff line number Diff line change 1
- sbt.version =1.2.1
1
+ sbt.version =1.2.3
You can’t perform that action at this time.
0 commit comments