Skip to content

Commit 31b8c6e

Browse files
marandanetobruno-garcia
authored andcommitted
1 parent b14c6cf commit 31b8c6e

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

buildSrc/src/main/java/Config.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ object Config {
4949
val SENTRY_CLIENT_NAME = "sentry.java.android"
5050
val group = "io.sentry"
5151
// TODO: change version to publish new version
52-
val version = "2.0.0-alpha05"
52+
val version = "2.0.0-alpha06"
5353
val description = "SDK for sentry.io"
5454
// TODO: change version code to publish new version, follow the pattern of `version`
55-
val buildVersionCode = 20005
55+
val buildVersionCode = 20006
5656
val website = "https://sentry.io"
5757
val userOrg = "getsentry"
5858
val repoName = "sentry-android"

sentry-android-core/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ configure<PublishExtension> {
115115

116116
gradle.taskGraph.whenReady {
117117
allTasks.find {
118-
it.path == ":${project.name}::generatePomFileForReleasePublication"
118+
it.path == ":${project.name}:generatePomFileForReleasePublication"
119119
}?.doLast {
120120
println("delete file: " + file("build/publications/release/pom-default.xml").delete())
121121
println("Overriding pom-file to make sure we can sync to maven central!")

sentry-android-ndk/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ configure<PublishExtension> {
141141

142142
gradle.taskGraph.whenReady {
143143
allTasks.find {
144-
it.path == ":${project.name}::generatePomFileForReleasePublication"
144+
it.path == ":${project.name}:generatePomFileForReleasePublication"
145145
}?.doLast {
146146
println("delete file: " + file("build/publications/release/pom-default.xml").delete())
147147
println("Overriding pom-file to make sure we can sync to maven central!")

sentry-android/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ configure<PublishExtension> {
5757

5858
gradle.taskGraph.whenReady {
5959
allTasks.find {
60-
it.path == ":${project.name}::generatePomFileForReleasePublication"
60+
it.path == ":${project.name}:generatePomFileForReleasePublication"
6161
}?.doLast {
6262
println("delete file: " + file("build/publications/release/pom-default.xml").delete())
6363
println("Overriding pom-file to make sure we can sync to maven central!")

0 commit comments

Comments
 (0)