This repository has been archived by the owner on Oct 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade all kinds of dependencies & use kork-bom (#54)
* chore(dependencies): Gradle 5, Kotlin 1.3 * chore(dependencies): Use kork-bom instead of spinnaker-dependencies * chore(dependencies): Use newer kork-bom and spinnaker-gradle-plugin * fix(build): remove useLastTag from the travis build scripts
- Loading branch information
1 parent
ff5e9a1
commit 7fe3cfb
Showing
23 changed files
with
127 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
org.gradle.parallel=true | ||
kotlinVersion=1.2.61 | ||
junitVersion=1.2.0 | ||
spekVersion=1.1.5 | ||
enablePublishing=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.7-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
apply from: "$rootDir/gradle/spek.gradle" | ||
|
||
dependencies { | ||
compile "com.fasterxml.jackson.core:jackson-annotations:${spinnaker.version("jackson")}" | ||
compile "com.fasterxml.jackson.core:jackson-databind:${spinnaker.version("jackson")}" | ||
compile "org.springframework:spring-context:${spinnaker.version("spring")}" | ||
api "com.fasterxml.jackson.core:jackson-annotations" | ||
api "com.fasterxml.jackson.core:jackson-databind" | ||
api "org.springframework:spring-context" | ||
|
||
testCompile project(":keiko-test-common") | ||
testImplementation project(":keiko-test-common") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
apply from: "$rootDir/gradle/spek.gradle" | ||
|
||
dependencies { | ||
compile project(":keiko-mem") | ||
compile project(":keiko-spring") | ||
api project(":keiko-mem") | ||
api project(":keiko-spring") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
apply from: "$rootDir/gradle/spek.gradle" | ||
|
||
dependencies { | ||
compile project(":keiko-core") | ||
compile "org.threeten:threeten-extra:1.0" | ||
api project(":keiko-core") | ||
api "org.threeten:threeten-extra" | ||
|
||
testCompile project(":keiko-tck") | ||
testCompile "org.funktionale:funktionale-partials:1.1" | ||
testImplementation project(":keiko-tck") | ||
testImplementation "org.funktionale:funktionale-partials" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
apply from: "$rootDir/gradle/spek.gradle" | ||
|
||
dependencies { | ||
compile project(":keiko-redis") | ||
compile project(":keiko-spring") | ||
api project(":keiko-redis") | ||
api project(":keiko-spring") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
apply from: "$rootDir/gradle/spek.gradle" | ||
|
||
dependencies { | ||
compile project(":keiko-core") | ||
compile "redis.clients:jedis:${spinnaker.version("jedis")}" | ||
compile "com.fasterxml.jackson.core:jackson-databind:${spinnaker.version("jackson")}" | ||
compile "com.fasterxml.jackson.module:jackson-module-kotlin:${spinnaker.version("jackson")}" | ||
compile "org.funktionale:funktionale-partials:1.1" | ||
compile "com.google.guava:guava:${spinnaker.version("guava")}" | ||
api project(":keiko-core") | ||
api "redis.clients:jedis" | ||
api "com.fasterxml.jackson.core:jackson-databind" | ||
api "com.fasterxml.jackson.module:jackson-module-kotlin" | ||
api "org.funktionale:funktionale-partials" | ||
api "com.github.ben-manes.caffeine:guava" | ||
|
||
testCompile project(":keiko-tck") | ||
testCompile "com.netflix.spinnaker.kork:kork-jedis-test:${spinnaker.version("kork")}" | ||
testImplementation project(":keiko-tck") | ||
testImplementation "com.netflix.spinnaker.kork:kork-jedis-test" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
apply from: "$rootDir/gradle/spek.gradle" | ||
|
||
dependencies { | ||
compile project(":keiko-core") | ||
compile "org.springframework.boot:spring-boot-autoconfigure:${spinnaker.version("springBoot")}" | ||
compile("com.netflix.spinnaker.kork:kork-core:${spinnaker.version("kork")}") { | ||
api project(":keiko-core") | ||
api "org.springframework.boot:spring-boot-autoconfigure" | ||
api("com.netflix.spinnaker.kork:kork-core") { | ||
exclude(module: "logback-classic") | ||
} | ||
api "com.netflix.eureka:eureka-client" | ||
|
||
testCompile project(":keiko-test-common") | ||
testImplementation project(":keiko-test-common") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.