File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 15
15
platform : [JVM, JS, Native]
16
16
mode : [normal]
17
17
exclude :
18
+ - scala : 2.11.x
19
+ platform : Native
18
20
- java : 11
19
21
platform : JS
20
22
- java : 11
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ lazy val root = project
23
23
.aggregate(
24
24
compat211JVM,
25
25
compat211JS,
26
- compat211Native,
27
26
compat212JVM,
28
27
compat212JS,
29
28
compat212Native,
@@ -152,14 +151,13 @@ lazy val compat = new MultiScalaCrossProject(
152
151
).nativeEnablePlugins(ScalaNativeJUnitPlugin )
153
152
)
154
153
155
- val compat211 = compat(Seq (JSPlatform , JVMPlatform , NativePlatform ), scala211)
154
+ val compat211 = compat(Seq (JSPlatform , JVMPlatform ), scala211)
156
155
val compat212 = compat(Seq (JSPlatform , JVMPlatform , NativePlatform ), scala212)
157
156
val compat213 = compat(Seq (JSPlatform , JVMPlatform , NativePlatform ), scala213)
158
157
val compat3 = compat(Seq (JSPlatform , JVMPlatform , NativePlatform ), scala3)
159
158
160
159
lazy val compat211JVM = compat211.jvm
161
160
lazy val compat211JS = compat211.js
162
- lazy val compat211Native = compat211.native
163
161
lazy val compat212JVM = compat212.jvm
164
162
lazy val compat212JS = compat212.js
165
163
lazy val compat212Native = compat212.native
You can’t perform that action at this time.
0 commit comments