Skip to content

Commit fca5169

Browse files
committed
chore: added plugins
1 parent 4ee451e commit fca5169

File tree

6 files changed

+254
-154
lines changed

6 files changed

+254
-154
lines changed

build.gradle.kts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@ buildscript {
2323
maven(url = "https://plugins.gradle.org/m2/")
2424
}
2525
dependencies {
26-
classpath("com.android.tools.build:gradle:8.7.2")
27-
classpath("com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1")
28-
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.21")
29-
classpath("org.jetbrains.dokka:dokka-gradle-plugin:1.9.20")
30-
classpath("com.mxalbert.gradle:jacoco-android:0.2.1")
26+
classpath(libs.gradle)
27+
classpath(libs.secrets.gradle.plugin)
28+
classpath(libs.kotlin.gradle.plugin)
29+
classpath(libs.dokka.gradle.plugin)
30+
classpath(libs.jacoco.android)
3131
}
3232
}
3333

3434
plugins {
3535
`maven-publish`
3636
signing
37-
id("org.jetbrains.dokka") version "1.5.0"
37+
id("org.jetbrains.dokka") version "2.0.0"
3838
}
3939

4040
// Shared configs across subprojects

gradle/libs.versions.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
kotlin = "2.2.0"
33
rxandroid = "3.0.2"
44
rxjava = "3.1.8"
5+
gradle = "8.10.1"
6+
jacoco-android = "0.2.1"
7+
dokka-gradle-plugin = "2.0.0"
8+
secrets-gradle-plugin = "2.0.1"
59
playServicesMaps = "19.2.0"
610
places = "4.3.1"
711
appCompat = "1.7.1"
@@ -28,3 +32,8 @@ material = { module = "com.google.android.material:material", version.ref = "mat
2832
rxLifecycle = { module = "com.trello.rxlifecycle4:rxlifecycle-android-lifecycle-kotlin", version.ref = "rxLifecycle" }
2933
mapsKtx = { module = "com.google.maps.android:maps-ktx", version.ref = "mapsKtx" }
3034
volley = { module = "com.android.volley:volley", version.ref = "volley" }
35+
kotlin-gradle-plugin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }
36+
dokka-gradle-plugin = { module = "org.jetbrains.dokka:dokka-gradle-plugin", version.ref = "dokka-gradle-plugin" }
37+
jacoco-android = { module = "com.mxalbert.gradle:jacoco-android", version.ref = "jacoco-android" }
38+
secrets-gradle-plugin = { module = "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin", version.ref = "secrets-gradle-plugin" }
39+
gradle = { module = "com.android.tools.build:gradle", version.ref = "gradle" }

gradle/wrapper/gradle-wrapper.jar

-10.5 KB
Binary file not shown.
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
#Wed Oct 16 17:13:36 CEST 2024
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
56
zipStoreBase=GRADLE_USER_HOME
67
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)