Skip to content

Commit 7dff49c

Browse files
authored
Merge pull request #657 from MaxMichel2/feature/kotlin_gradle_plugin
✨ Add Kotlin Gradle Plugin dependency
2 parents 50aba36 + a37feb7 commit 7dff49c

File tree

8 files changed

+17
-5
lines changed

8 files changed

+17
-5
lines changed

docs/dependency-notations.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Built-in Dependency Notations
33
---
44
# Built-in Dependency Notations
55

6-
[**refreshVersions**](https://github.com/jmfayard/refreshVersions) provides **1180** Dependency Notations in **26** groups and **249** subgroups
6+
[**refreshVersions**](https://github.com/jmfayard/refreshVersions) provides **1181** Dependency Notations in **26** groups and **249** subgroups
77

88
**Built-in Dependency Notations** are maven coordinates of popular libraries,
99
discoverable as for example `KotlinX.coroutines.core` in IntelliJ IDEA,
@@ -5372,6 +5372,12 @@ Hover 🐁 on a dependency notation to see its `Triple(KotlinName, MavenCoordina
53725372
<table style="width: 100%; table-layout:fixed;">
53735373
<thead><tr><th>Group</th> <th>Dependency Notations</th></tr></thead>
53745374
<tr><td><b>Kotlin</b></td><td>
5375+
<span
5376+
title="Kotlin.gradlePlugin&#10;org.jetbrains.kotlin:kotlin-gradle-plugin:_&#10;version.kotlin"
5377+
style="text-decoration: underline;">
5378+
gradlePlugin
5379+
</span>
5380+
-
53755381
<span
53765382
title="Kotlin.scriptRuntime&#10;org.jetbrains.kotlin:kotlin-script-runtime:_&#10;version.kotlin"
53775383
style="text-decoration: underline;">

plugins/dependencies/src/main/kotlin/dependencies/Kotlin.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,7 @@ object Kotlin : DependencyGroup(group = "org.jetbrains.kotlin") {
4141

4242
/** Kotlin Script Runtime */
4343
val scriptRuntime = module("kotlin-script-runtime")
44+
45+
/** Kotlin Gradle PLugin */
46+
val gradlePlugin = module("kotlin-gradle-plugin")
4447
}

plugins/dependencies/src/test/resources/bundled-dependencies-validated.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -973,6 +973,7 @@ org.http4k:http4k-testing-webdriver
973973
org.jetbrains.exposed:exposed-core
974974
org.jetbrains.exposed:exposed-dao
975975
org.jetbrains.exposed:exposed-jdbc
976+
org.jetbrains.kotlin:kotlin-gradle-plugin
976977
org.jetbrains.kotlin:kotlin-script-runtime
977978
org.jetbrains.kotlin:kotlin-stdlib
978979
org.jetbrains.kotlin:kotlin-stdlib-common

plugins/dependencies/src/test/resources/dependencies-mapping-validated.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1113,6 +1113,7 @@ org.http4k..http4k-testing-webdriver=Http4k.testing.webdriver
11131113
org.jetbrains.exposed..exposed-core=JetBrains.exposed.core
11141114
org.jetbrains.exposed..exposed-dao=JetBrains.exposed.dao
11151115
org.jetbrains.exposed..exposed-jdbc=JetBrains.exposed.jdbc
1116+
org.jetbrains.kotlin..kotlin-gradle-plugin=Kotlin.gradlePlugin
11161117
org.jetbrains.kotlin..kotlin-script-runtime=Kotlin.scriptRuntime
11171118
org.jetbrains.kotlin..kotlin-stdlib-common=Kotlin.stdlib.common
11181119
org.jetbrains.kotlin..kotlin-stdlib-jdk7=Kotlin.stdlib.jdk7

plugins/dependencies/src/test/resources/dependencies-versions-key-validated.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -973,6 +973,7 @@ org.http4k..http4k-testing-webdriver=version.http4k
973973
org.jetbrains.exposed..exposed-core=version.jetbrains.exposed
974974
org.jetbrains.exposed..exposed-dao=version.jetbrains.exposed
975975
org.jetbrains.exposed..exposed-jdbc=version.jetbrains.exposed
976+
org.jetbrains.kotlin..kotlin-gradle-plugin=version.kotlin
976977
org.jetbrains.kotlin..kotlin-script-runtime=version.kotlin
977978
org.jetbrains.kotlin..kotlin-stdlib-common=version.kotlin
978979
org.jetbrains.kotlin..kotlin-stdlib-jdk7=version.kotlin

sample-android/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies {
2525
implementation(AndroidX.constraintLayout)
2626
implementation(Google.android.material)
2727
implementation(AndroidX.lifecycle.runtime)
28-
implementation(AndroidX.lifecycle.runtimeKtx)
28+
implementation(AndroidX.lifecycle.runtime.ktx)
2929
implementation(AndroidX.lifecycle.viewModel)
3030
testImplementation(Testing.junit4)
3131
androidTestImplementation(AndroidX.test.core)

sample-android/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99

1010
dependencies {
1111
classpath(Android.tools.build.gradlePlugin)
12-
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:_")
12+
classpath(Kotlin.gradlePlugin)
1313
}
1414
}
1515

sample-android/versions.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#### Dependencies and Plugin versions with their available updates.
2-
#### Generated by `./gradlew refreshVersions` version 0.41.0-SNAPSHOT
3-
#### Revision of dependency notations removals: 11
2+
#### Generated by `./gradlew refreshVersions` version 0.52.0-SNAPSHOT
3+
#### Revision of dependency notations removals: 15
44
####
55
#### Don't manually edit or split the comments that start with four hashtags (####),
66
#### they will be overwritten by refreshVersions.

0 commit comments

Comments
 (0)