Skip to content

Commit 0daba9e

Browse files
committed
fix(sdk): sdk name
1 parent 4421bd8 commit 0daba9e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ jobs:
6262
cache: gradle
6363

6464
- name: Publish artifacts
65-
run: ./gradlew :sumup-sdk:sonatypeCentralUpload
65+
run: ./gradlew :sumup:sonatypeCentralUpload

examples/basic/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ application {
88
}
99

1010
dependencies {
11-
implementation project(':sumup-sdk')
11+
implementation project(':sumup')
1212
}

examples/card-reader-checkout/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ application {
88
}
99

1010
dependencies {
11-
implementation project(':sumup-sdk')
11+
implementation project(':sumup')
1212
}

settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
rootProject.name = 'sumup-java'
22

3-
include(':sumup-sdk')
4-
project(':sumup-sdk').projectDir = file('src')
3+
include(':sumup')
4+
project(':sumup').projectDir = file('src')
55

66
include(':examples:basic')
77
project(':examples:basic').projectDir = file('examples/basic')

0 commit comments

Comments
 (0)