Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjenx committed Oct 22, 2024
1 parent e9306e9 commit 2ad8012
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 13 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
kotlin = "2.0.21"
agp = "8.6.1"
agp = "8.7.1"
kotlinx-coroutines = "1.9.0"
kotlinx-serialization = { require = "1.7.3" }
kotlinx-datetime = "0.6.1"
Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ android {
dependencies {
//noinspection UseTomlInstead
//https://maven.pkg.github.com/MercuryTechnologies/sqkon/com/mercury/sqkon/library-android/0.1.0-alpha01/library-android-0.1.0-alpha01.pom 355 ms 0 B 0 B/s
//implementation("com.mercury.sqkon:library-android:1.0.0-alpha01")
//implementation("com.mercury.sqkon:library-android:0.1.0-alpha03")
}
14 changes: 3 additions & 11 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@file:Suppress("UnstableApiUsage")

rootProject.name = "sqkon"

pluginManagement {
Expand Down Expand Up @@ -32,17 +34,7 @@ dependencyResolutionManagement {
}
}
mavenCentral()
maven {
// https://maven.pkg.github.com/MercuryTechnologies/sqkon/com/mercury/sqkon/library/1.0.0-alpha01/library-1.0.0-alpha01.pom

val gprUser = if (extra.has("gpr.user")) extra["gpr.user"] as String? else null
val gprKey = if (extra.has("gpr.key")) extra["gpr.key"] as String? else null
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/MercuryTechnologies/sqkon")
credentials {
username = gprUser ?: System.getenv("GITHUB_ACTOR")
password = gprKey ?: System.getenv("GITHUB_TOKEN")
}
mavenLocal {
content {
includeGroup("com.mercury.sqkon")
}
Expand Down

0 comments on commit 2ad8012

Please sign in to comment.