Skip to content

Commit

Permalink
Change dependencies to mark as compile rather than runtime in pom (
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmook authored May 7, 2020
1 parent cbbb4f9 commit b904878
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions fixture-kotlintest/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ apply(from = "$rootDir/bintray.gradle.kts")
apply(from = "$rootDir/gradle/scripts/jacoco.gradle.kts")

dependencies {
implementation(kotlin("stdlib-jdk8"))
api(kotlin("stdlib-jdk8"))
api(project(":fixture"))
implementation("io.kotlintest:kotlintest-runner-junit5:3.4.2")
api("io.kotlintest:kotlintest-runner-junit5:3.4.2")

testImplementation("junit:junit:4.13")
testImplementation(kotlin("test"))
Expand Down
6 changes: 3 additions & 3 deletions fixture/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ apply(from = "$rootDir/bintray.gradle.kts")
apply(from = "$rootDir/gradle/scripts/jacoco.gradle.kts")

dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("io.github.classgraph:classgraph:4.8.78")
implementation(kotlin("reflect"))
api(kotlin("stdlib-jdk8"))
api("io.github.classgraph:classgraph:4.8.78")
api(kotlin("reflect"))

compileOnly("joda-time:joda-time:2.10.6")
testImplementation("joda-time:joda-time:2.10.6")
Expand Down

0 comments on commit b904878

Please sign in to comment.