Skip to content
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

Update dependencies #57

Merged
merged 16 commits into from
Sep 25, 2024
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)