Skip to content

Commit

Permalink
Update dependencies (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
mars885 authored Sep 25, 2024
1 parent 4b908cc commit 5070ab9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
12 changes: 6 additions & 6 deletions buildSrc/src/main/java/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -68,19 +68,19 @@ object versions {

const val kotlin = "2.0.0" // also in buildSrc build.gradle.kts file
const val androidPlugin = "8.3.1" // also in buildSrc build.gradle.kts file
const val detektPlugin = "1.23.6"
const val detektPlugin = "1.23.7"
const val ktlintPlugin = "12.1.1"
const val gradleVersionsPlugin = "0.51.0"
const val dokkaPlugin = "1.9.20"
const val shadowPlugin = "8.0.0"
const val ksp = "2.0.0-1.0.24"
const val dagger = "2.51.1"
const val dagger = "2.52"
const val appCompat = "1.7.0"
const val navigation = "2.7.7"
const val fragmentKtx = "1.8.2"
const val navigation = "2.8.1"
const val fragmentKtx = "1.8.3"
const val constraintLayout = "2.1.4"
const val materialComponents = "1.12.0"
const val apacheCommons = "3.15.0"
const val apacheCommons = "3.17.0"
const val javaPoet = "1.13.0" // also in buildSrc build.gradle.kts file
const val kotlinPoet = "1.18.1"
const val incap = "1.0.0"
Expand All @@ -89,7 +89,7 @@ object versions {
const val jUnit = "4.13.2"
const val truth = "1.4.4"
const val ktCompileTesting = "0.5.1"
const val testParamInjector = "1.16"
const val testParamInjector = "1.17"
}

object deps {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
kotlin.code.style=official
Binary file not shown.
Binary file not shown.
5 changes: 4 additions & 1 deletion sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,11 @@ dependencies {
val installGitHook by tasks.registering(Copy::class) {
from(File(rootProject.rootDir, "hooks/pre-push"))
into(File(rootProject.rootDir, ".git/hooks/"))

// https://github.com/gradle/kotlin-dsl-samples/issues/1412
fileMode = 0b111101101 // -rwxr-xr-x
filePermissions {
unix("rwxr-xr-x")
}
}

tasks.getByPath(":sample:preBuild").dependsOn(installGitHook)

0 comments on commit 5070ab9

Please sign in to comment.