Skip to content

Commit

Permalink
#1: testing with different hazelcast versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sorokinigor committed Jan 7, 2017
1 parent 550a23f commit 8ad6119
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@ language: scala
scala:
- 2.11.8
- 2.12.1
env:
-HAZELCAST=3.6.7
-HAZELCAST=3.7.4
jdk:
- oraclejdk8
install: true
script:
- ./gradlew -Dscala.version=${TRAVIS_SCALA_VERSION} assemble check
- ./gradlew -Dscala.version=${TRAVIS_SCALA_VERSION} -Dhazelcast.version=${HAZELCAST} assemble check
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repositories {

ext.versions = [
scala : [major: '2.12', current: System.getProperty('scala.version', '2.12.1')],
hazelcast: '3.7.4',
hazelcast: System.getProperty('hazelcast.version', '3.7.4'),
akka : [scala: '2.11', framework: '2.4.16'],
scalaTest: '3.0.1',
junit : '4.12',
Expand Down

0 comments on commit 8ad6119

Please sign in to comment.