Skip to content

Commit

Permalink
Changed travis file
Browse files Browse the repository at this point in the history
  • Loading branch information
sonus21 committed May 2, 2020
1 parent bf7fd36 commit c236e8b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
- SPRING_DATA_VERSION=2.1.2.RELEASE
- MICROMETER_VERSION=1.1.0
script:
- ./gradlew check
- ./gradlew codeCoverageReport
- stage: spring-boot-2.2
env:
Expand All @@ -33,7 +32,6 @@ jobs:
- SPRING_DATA_VERSION=2.2.0.RELEASE
- MICROMETER_VERSION=1.3.2
script:
- ./gradlew check
- ./gradlew codeCoverageReport


Expand Down
12 changes: 8 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,14 @@ allprojects {
}
}
ext {
springBootVersion = '2.1.0.RELEASE'
springVersion = '5.1.2.RELEASE'
springDataVersion = '2.1.2.RELEASE'
microMeterVersion = '1.1.0'
springBootVersion = System.getenv("SPRING_BOOT_VERSION")
springVersion = System.getenv("SPRING_VERSION")
springDataVersion = System.getenv("SPRING_DATA_VERSION")
microMeterVersion = System.getenv("MICROMETER_VERSION")
// springBootVersion = '2.1.0.RELEASE'
// springVersion = '5.1.2.RELEASE'
// springDataVersion = '2.1.2.RELEASE'
// microMeterVersion = '1.1.0'

// logging dependencies
lombokVersion = '1.18.10'
Expand Down

0 comments on commit c236e8b

Please sign in to comment.