Skip to content

Commit

Permalink
Update Scala to 2.11, fix travis build
Browse files Browse the repository at this point in the history
  • Loading branch information
alyiwang committed Aug 11, 2018
1 parent 48dc554 commit 8ad891d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ jdk:
- oraclejdk8

env:
- DOCKER_COMPOSE_VERSION=1.14.0
- DOCKER_COMPOSE_VERSION=1.22.0

services:
- docker
- elasticsearch

before_install:
# elasticsearch
- curl -O https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/deb/elasticsearch/2.3.3/elasticsearch-2.3.3.deb && sudo dpkg -i --force-confnew elasticsearch-2.3.3.deb && sudo service elasticsearch restart
- curl -0 https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/deb/elasticsearch/2.3.5/elasticsearch-2.3.5.deb && sudo dpkg -i --force-confnew elasticsearch-2.3.5.deb && sudo service elasticsearch restart

# extralibs
- wget https://github.com/ericsun2/sandbox/raw/master/extralibs/extralibs.zip
Expand Down
2 changes: 1 addition & 1 deletion gradle/scripts/coverage.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'com.palantir.jacoco-full-report'
apply plugin: 'jacoco'

// Must match the version used in jacoco4sbt plugin.
ext.jacocoVersion = '0.7.1.201405082137'
ext.jacocoVersion = '0.8.1'

jacoco {
toolVersion = jacocoVersion
Expand Down
10 changes: 5 additions & 5 deletions gradle/scripts/dependency.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ ext.externalDependency = [
"jasypt" : "org.jasypt:jasypt:1.9.2",
"mockito" : "org.mockito:mockito-core:2.13.0",

"play_java_jdbc" : "com.typesafe.play:play-java-jdbc_2.10:2.4.11",
"play_java_ws" : "com.typesafe.play:play-java-ws_2.10:2.4.11",
"play_cache" : "com.typesafe.play:play-cache_2.10:2.4.11",
"play_filter" : "com.typesafe.play:filters-helpers_2.10:2.4.11",
"play_java_jdbc" : "com.typesafe.play:play-java-jdbc_2.11:2.4.11",
"play_java_ws" : "com.typesafe.play:play-java-ws_2.11:2.4.11",
"play_cache" : "com.typesafe.play:play-cache_2.11:2.4.11",
"play_filter" : "com.typesafe.play:filters-helpers_2.11:2.4.11",
"typesafe_config" : "com.typesafe:config:1.3.1",
"netty" : "io.netty:netty:3.10.6.Final",
"akka" : "com.typesafe.akka:akka-actor_2.10:2.3.16",
"akka" : "com.typesafe.akka:akka-actor_2.11:2.3.16",
"spring_jdbc" : "org.springframework:spring-jdbc:4.1.9.RELEASE",

"kafka_clients" : "org.apache.kafka:kafka-clients:0.10.2.1",
Expand Down

0 comments on commit 8ad891d

Please sign in to comment.