Skip to content

Commit 1d68a5c

Browse files
committed
update
1 parent cd570b3 commit 1d68a5c

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ android.useAndroidX=true
33
android.enableJetifier=true
44
kotlin.code.style=official
55

6-
version=1.0.1
6+
version=1.0.2
77
kotlin.version=1.6.21
88
agp.version=7.0.4
99
compose.version=1.2.0-alpha01-dev675

markpose/build.gradle.kts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,14 @@ afterEvaluate {
9595
maven {
9696
name = "GithubPackages"
9797
url = uri("https://maven.pkg.github.com/codeckle/compose-markdown")
98-
99-
runCatching {
98+
try {
10099
credentials {
101100
username = (githubProperties["gpr.usr"] ?: System.getenv("GPR_USER")).toString()
102101
password = (githubProperties["gpr.key"] ?: System.getenv("GPR_API_KEY")).toString()
103102
}
104-
}.onFailure { it.printStackTrace() }
103+
}catch(ex : Exception){
104+
ex.printStackTrace()
105+
}
105106
}
106107
}
107108
}

0 commit comments

Comments
 (0)