File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change
1
+ // TODO Gradle sync works but the IDE can't resolve the symbol
1
2
import static de.fayard.refreshVersions.core.Versions.versionFor
2
3
3
4
plugins {
@@ -9,13 +10,23 @@ plugins {
9
10
10
11
group = " de.fayard"
11
12
13
+ /**
14
+ * NOTE auto-completion doesn't work here because the buildSrc is not setup
15
+ * See https://jmfayard.github.io/refreshVersions/setup/#if-you-use-groovy-dsl-ie-buildgradle-files-not-kts
16
+ */
17
+ dependencies {
18
+ // TODO: implementation(KotlinX.coroutines.<TAB>)
19
+ }
12
20
dependencies {
13
21
implementation(" com.google.guava:guava:_" )
14
22
implementation(" com.google.inject:guice:_" )
15
23
implementation(AndroidX . annotation)
16
24
implementation(" org.jetbrains:annotations:_" )
25
+ implementation(KotlinX . coroutines. android)
26
+ implementation(KotlinX . coroutines. android)
17
27
}
18
28
29
+
19
30
println (" The version for artifact org.jetbrains:annotations:_ is " + versionFor(project, " org.jetbrains:annotations:_" ))
20
31
println (" The version for version key version.com.google.guava..guava is " + versionFor(project, " version.com.google.guava..guava" ))
21
32
Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ pluginManagement {
11
11
}
12
12
}
13
13
14
- plugins {
14
+ // https://jmfayard.github.io/refreshVersions/setup/#if-you-use-groovy-dsl-ie-buildgradle-files-not-kts
15
+ /**
16
+ plugins {
15
17
id("de.fayard.refreshVersions")
16
18
}
19
+ **/
Original file line number Diff line number Diff line change 1
1
# ### Dependencies and Plugin versions with their available updates.
2
- # ### Generated by `./gradlew refreshVersions` version 0.41 .0-SNAPSHOT
2
+ # ### Generated by `./gradlew refreshVersions` version 0.51 .0-SNAPSHOT
3
3
# ### Revision of dependency notations removals: 14
4
4
# ###
5
5
# ### Don't manually edit or split the comments that start with four hashtags (####),
@@ -20,4 +20,6 @@ version.com.google.guava..guava=15.0
20
20
21
21
version.com.google.inject..guice =2.0
22
22
23
+ version.kotlinx.coroutines =1.6.4
24
+
23
25
version.org.jetbrains..annotations =17.0.0
You can’t perform that action at this time.
0 commit comments