Skip to content

Commit 9ab848e

Browse files
committed
Version update and exempt maven local publish task from signing
1 parent bd12025 commit 9ab848e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ allprojects {
2424

2525
}
2626

27-
project.version = "1.0.0-beta01";
27+
project.version = "1.0.0-beta02-SNAPSHOT";
2828
}
2929

3030
task clean(type: Delete) {

ui/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ dependencies {
4646
implementation "androidx.legacy:legacy-support-v4:1.0.0"
4747
implementation "androidx.recyclerview:recyclerview:1.0.0"
4848

49-
api 'com.hyperwallet.android:core-sdk:1.0.0-beta01'
49+
api 'com.hyperwallet.android:core-sdk:1.0.0-beta02-SNAPSHOT'
5050

5151
androidTestImplementation "androidx.test.ext:junit:1.1.0"
5252
androidTestImplementation "androidx.test:runner:1.1.1"
@@ -149,7 +149,7 @@ publishing {
149149

150150
tasks.withType(Sign) {
151151
onlyIf {
152-
isReleaseVersion
152+
isReleaseVersion && !gradle.taskGraph.hasTask("publishToMavenLocal")
153153
}
154154
}
155155

0 commit comments

Comments
 (0)