File tree 3 files changed +11
-18
lines changed
3 files changed +11
-18
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ dist: trusty
4
4
jdk : openjdk11
5
5
6
6
scala :
7
- - 2.12.10
8
7
- 2.13.1
9
8
10
9
before_script :
@@ -23,6 +22,5 @@ before_script:
23
22
- export PATH=$PWD/selenium-bin:$PATH
24
23
25
24
script :
26
- - sbt ++$TRAVIS_SCALA_VERSION test
27
- - sbt ++$TRAVIS_SCALA_VERSION publishLocal
28
- - cd example && sbt ++$TRAVIS_SCALA_VERSION compile jquery-global-demo/fullOptJS jquery-bundler-demo/compileStatics
25
+ - sbt +test +publishLocal
26
+ - cd example && sbt compile jquery-global-demo/fullOptJS jquery-bundler-demo/compileStatics
Original file line number Diff line number Diff line change 1
1
name := " jquery-demo"
2
2
3
3
inThisBuild(Seq (
4
- version := " 3.0.0 " ,
4
+ version := " 3.0.1 " ,
5
5
organization := " io.udash" ,
6
6
))
7
7
8
8
val commonSettings = Seq (
9
9
scalaVersion := " 2.12.10" ,
10
- crossScalaVersions := Seq (" 2.11.12 " , " 2.12. 10" ),
10
+ crossScalaVersions := Seq (" 2.12. 10" ), // todo 2.13
11
11
scalacOptions ++= Seq (
12
12
" -feature" ,
13
13
" -deprecation" ,
@@ -16,18 +16,13 @@ val commonSettings = Seq(
16
16
" -language:existentials" ,
17
17
" -language:dynamics" ,
18
18
" -language:postfixOps" ,
19
- " -Xfuture" ,
20
19
" -Xfatal-warnings" ,
21
20
" -Xlint:_" ,
21
+ " -Ywarn-unused:_,-explicits,-implicits" ,
22
+ " -Ybackend-parallelism" , " 4" ,
23
+ " -Ycache-plugin-class-loader:last-modified" ,
24
+ " -Ycache-macro-class-loader:last-modified"
22
25
),
23
- scalacOptions ++= {
24
- if (scalaBinaryVersion.value == " 2.12" ) Seq (
25
- " -Ywarn-unused:_,-explicits,-implicits" ,
26
- " -Ybackend-parallelism" , " 4" ,
27
- " -Ycache-plugin-class-loader:last-modified" ,
28
- " -Ycache-macro-class-loader:last-modified"
29
- ) else Seq .empty
30
- },
31
26
32
27
libraryDependencies ++= Dependencies .deps.value
33
28
)
Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ import org.portablescala.sbtplatformdeps.PlatformDepsPlugin.autoImport._
3
3
import sbt ._
4
4
5
5
object Dependencies {
6
- val udashCoreVersion = " 0.6 .1"
7
- val udashJQueryVersion = " 3.0.0 "
6
+ val udashCoreVersion = " 0.8 .1"
7
+ val udashJQueryVersion = " 3.0.1 "
8
8
9
9
val deps = Def .setting(Seq [ModuleID ](
10
- " io.udash" %%% " udash-core-frontend " % udashCoreVersion,
10
+ " io.udash" %%% " udash-core" % udashCoreVersion,
11
11
" io.udash" %%% " udash-jquery" % udashJQueryVersion
12
12
))
13
13
You can’t perform that action at this time.
0 commit comments