-
Notifications
You must be signed in to change notification settings - Fork 112
Start using the refreshVersions Gradle plugin to manage dependencies. #111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| ## suppress inspection "SpellCheckingInspection" for whole file | ||
| ## | ||
| ## Dependencies and Plugin versions with their available updates | ||
| ## Generated by $ ./gradlew refreshVersions | ||
| ## Please, don't put extra comments in that file yet, keeping them is not supported yet. | ||
| plugin.android=4.0.0 | ||
| version.androidx.activity=1.1.0 | ||
| version.androidx.appcompat=1.1.0 | ||
| version.androidx.constraintlayout=1.1.3 | ||
| version.androidx.databinding=4.0.0 | ||
| version.androidx.fragment=1.2.3 | ||
| version.androidx.gridlayout=1.0.0 | ||
| version.androidx.lifecycle=2.2.0 | ||
| version.androidx.recyclerview=1.1.0 | ||
| version.androidx.savedstate=1.0.0 | ||
| version.androidx.test.espresso=3.2.0 | ||
| version.androidx.test.ext.junit=1.1.1 | ||
| version.androidx.test.ext.truth=1.2.0 | ||
| version.androidx.test.runner=1.2.0 | ||
| version.androidx.test.uiautomator=2.2.0 | ||
| version.androidx.test=1.2.0 | ||
| version.androidx.transition=1.3.1 | ||
| version.com.android.tools..desugar_jdk_libs=1.0.5 | ||
| version.com.charleskorn.kaml..kaml=0.16.1 | ||
| version.com.google.truth..truth=1.0.1 | ||
| version.com.googlecode.lanterna..lanterna=3.0.2 | ||
| version.com.jakewharton.timber..timber=4.7.1 | ||
| version.com.nhaarman..mockito-kotlin-kt1.1=1.6.0 | ||
| version.com.squareup..seismic=1.0.2 | ||
| version.com.vanniktech..gradle-maven-publish-plugin=0.11.1 | ||
| version.cycler=0.1.3 | ||
| version.google.android.material=1.1.0 | ||
| version.io.gitlab.arturbosch.detekt..detekt-gradle-plugin=1.0.1 | ||
| version.io.reactivex.rxjava2..rxandroid=2.1.1 | ||
| version.io.reactivex.rxjava2..rxjava=2.2.19 | ||
| version.junit.junit=4.13 | ||
| version.kotlin=1.3.72 | ||
| version.kotlinx.coroutines=1.3.7 | ||
| version.kotlinx.serialization=0.20.0 | ||
| version.me.champeau.gradle..jmh-gradle-plugin=0.5.0 | ||
| version.moshi=1.9.2 | ||
| version.okio=2.5.0 | ||
| version.org.hamcrest..hamcrest-core=2.2 | ||
| version.org.jetbrains..annotations=19.0.0 | ||
| version.org.jetbrains.dokka..dokka-gradle-plugin=0.10.0 | ||
| version.org.jetbrains.kotlin..kotlin-gradle-plugin=1.3.72 | ||
| version.org.jetbrains.kotlin..kotlin-reflect=1.3.72 | ||
| version.org.jetbrains.kotlinx..binary-compatibility-validator=0.2.3 | ||
| version.org.jlleitschuh.gradle..ktlint-gradle=9.2.1 | ||
| version.org.jlleitschuh.gradle=9.2.0 | ||
| version.org.mockito=3.3.3 | ||
| version.org.openjdk.jmh..jmh-core=1.23 | ||
| version.org.openjdk.jmh..jmh-generator-annprocess=1.23 | ||
| version.org.openjdk.jmh=1.23 | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What kind of control do we have when there are specific versions we don't want to bump? I guess we just don't use the
_?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep. But the tooling is very safe – you run
./gradlew refreshVersions, and it just adds a bunch of comments to that file telling you what the latest versions are. You have to actually edit it to update.