Skip to content

Commit 7db4aed

Browse files
committed
fixing stuff
1 parent 74fb316 commit 7db4aed

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

buildSrc/src/main/java/Dependencies.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import org.gradle.util.VersionNumber
22

33
object BuildPluginsVersion {
4-
val AGP = System.getenv("VERSION_AGP") ?: "8.8.1"
4+
val AGP = System.getenv("VERSION_AGP") ?: "8.10.1"
55
val GROOVY_REDISTRIBUTED = System.getenv("VERSION_GROOVY") ?: "1.7.1"
66

77
// proguard does not support AGP 8 yet
@@ -16,7 +16,7 @@ object LibsVersion {
1616
object Libs {
1717
fun agp(version: String) = "com.android.tools.build:gradle:$version"
1818
val AGP = "com.android.tools.build:gradle:${BuildPluginsVersion.AGP}"
19-
const val PROGUARD = "com.guardsquare:proguard-gradle:7.5.0"
19+
const val PROGUARD = "com.guardsquare:proguard-gradle:7.1.0"
2020
}
2121

2222
object CI {

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
22
kotlin = "1.8.20"
3-
agp = "8.8.1"
3+
agp = "8.10.1"
44

55
asm = "9.4" # // compatibility matrix -> https://developer.android.com/reference/tools/gradle-api/7.1/com/android/build/api/instrumentation/InstrumentationContext#apiversion
66
ktfmt = "0.51"
@@ -30,7 +30,7 @@ springDependencyManagement = { id = "io.spring.dependency-management", version =
3030

3131
[libraries]
3232
junit = { group = "junit", name = "junit", version = "4.13.2" }
33-
proguard = { group = "com.guardsquare", name = "proguard-gradle", version = "7.5.0" }
33+
proguard = { group = "com.guardsquare", name = "proguard-gradle", version = "7.1.0" }
3434
# this allows us to develop against a fixed version of Gradle, as opposed to depending on the
3535
# locally available version. kotlin-gradle-plugin follows the same approach.
3636
# More info: https://docs.nokee.dev/manual/gradle-plugin-development-plugin.html

plugin-build/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ gradlePlugin {
168168
implementationClass = "io.sentry.jvm.gradle.SentryJvmPlugin"
169169
}
170170
}
171+
testSourceSets(sourceSets.test.get())
171172
}
172173

173174
tasks.withType<ShadowJar>().configureEach {

0 commit comments

Comments
 (0)