Skip to content

Commit 4eab774

Browse files
committed
move to buildscript classpath
1 parent 7a1685c commit 4eab774

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@ plugins {
3333
// id("io.sentry.android.gradle") version "5.6.0" apply false
3434
}
3535

36+
buildscript {
37+
dependencies {
38+
classpath(libs.commons.compress)
39+
}
40+
}
41+
3642
apiValidation {
3743
ignoredPackages.addAll(
3844
setOf(

buildSrc/build.gradle.kts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,3 @@ repositories {
1111
tasks.withType<KotlinCompile>().configureEach {
1212
kotlinOptions.jvmTarget = JavaVersion.VERSION_17.toString()
1313
}
14-
15-
dependencies {
16-
implementation("org.apache.commons:commons-compress:1.25.0")
17-
}

gradle/libs.versions.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ androidx-navigation-runtime = { module = "androidx.navigation:navigation-runtime
4949
androidx-navigation-compose = { module = "androidx.navigation:navigation-compose", version.ref = "androidxNavigation" }
5050
coil-compose = { module = "io.coil-kt:coil-compose", version = "2.6.0" }
5151
kotlin-test-junit = { module = "org.jetbrains.kotlin:kotlin-test-junit", version.ref = "kotlin" }
52+
commons-compress = { module = "org.apache.commons:commons-compress", version = "1.25.0" }
5253

5354
# test libraries
5455
androidx-test-core = { module = "androidx.test:core", version.ref = "androidxTestCore" }

0 commit comments

Comments
 (0)