Replies: 1 comment 1 reply
-
Yes that's correct. If your library is part of the built-in dependency notations from https://github.com/jmfayard/refreshVersions/tree/main/plugins/dependencies/src/main/kotlin/dependencies |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
assuming I have version 0.40.1 setup and working, here is my current recipe for adding a new dependency:
Libs.kt
build.gradle
(orbuild.gradle.kts
). Example: addimplementation("org.assertj:assertj-core:3.22.0")
./gradlew buildSrcLibs
which will add a line toLibs.kt
and a line toversions.properties
for the new dependencybuild.gradle
(orbuild.gradle.kts
) withimplementation(Libs.assertj_core)
Is that correct?
Beta Was this translation helpful? Give feedback.
All reactions