Skip to content

Commit

Permalink
Sets michael-rapp:java-util as an api dependency
Browse files Browse the repository at this point in the history
> The plugin exposes two configurations that can be used to declare dependencies: api and implementation. The api configuration should be used to declare dependencies which are exported by the library API, whereas the implementation configuration should be used to declare dependencies which are internal to the component. More info [here](https://docs.gradle.org/current/userguide/java_library_plugin.html#sec:java_library_separation).
  • Loading branch information
falcaopetri committed Apr 12, 2019
1 parent 2e8bb7d commit 4b9e63d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ repositories {

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$version_kotlin"
implementation "com.github.michael-rapp:java-util:$version_java_util"
api "com.github.michael-rapp:java-util:$version_java_util"
implementation "org.slf4j:slf4j-api:$version_slf4j"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$version_kotlin"
testImplementation "org.mockito:mockito-core:$version_mockito"
Expand Down Expand Up @@ -111,4 +111,4 @@ uploadArchives {
}
}
}
}
}

0 comments on commit 4b9e63d

Please sign in to comment.