Skip to content

Commit

Permalink
chore(dependencies): replace kork dependencies with kork-runtime (spi…
Browse files Browse the repository at this point in the history
  • Loading branch information
cfieber committed Jul 13, 2020
1 parent 71f5b93 commit 1cb2a1d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion keel-web/keel-web.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ dependencies {
implementation(project(":keel-titus-plugin"))

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core")
implementation("com.netflix.spinnaker.kork:kork-core")
implementation("com.netflix.spinnaker.kork:kork-web")
implementation("com.netflix.spinnaker.kork:kork-artifacts")
implementation("org.springframework.boot:spring-boot-starter-actuator")
Expand All @@ -33,6 +32,15 @@ dependencies {
implementation("org.apache.maven:maven-artifact:3.6.3")
implementation("com.netflix.spinnaker.kork:kork-plugins")

runtimeOnly("com.netflix.spinnaker.kork:kork-runtime") {
// these dependencies weren't previously being included, keeping them out for now, if there
// is a need for them in the future these excludes are easy enough to delete...
exclude(mapOf("group" to "com.netflix.spinnaker.kork", "module" to "kork-swagger"))
exclude(mapOf("group" to "com.netflix.spinnaker.kork", "module" to "kork-stackdriver"))
exclude(mapOf("group" to "com.netflix.spinnaker.kork", "module" to "kork-secrets-aws"))
exclude(mapOf("group" to "com.netflix.spinnaker.kork", "module" to "kork-secrets-gcp"))
}

testImplementation("io.strikt:strikt-jackson")
testImplementation(project(":keel-test"))
testImplementation(project(":keel-core-test"))
Expand Down

0 comments on commit 1cb2a1d

Please sign in to comment.