mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 15:17:05 +05:30
desktop: add Aurora dependencies
This commit is contained in:
parent
43f441ded9
commit
5e9bdd2a1b
3 changed files with 13 additions and 2 deletions
|
@ -16,6 +16,9 @@ kotlin {
|
|||
val jvmMain by getting {
|
||||
dependencies {
|
||||
implementation(projects.common)
|
||||
implementation(libs.aurora.component)
|
||||
implementation(libs.aurora.skin)
|
||||
implementation(libs.aurora.window)
|
||||
implementation(compose.desktop.currentOs)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[versions]
|
||||
accompanist = "0.18.0"
|
||||
aurora = "0.0.54-SNAPSHOT"
|
||||
coroutines = "1.5.2"
|
||||
hilt = "2.38.1"
|
||||
moshix = "0.14.1"
|
||||
|
@ -21,6 +22,10 @@ androidx-browser = "androidx.browser:browser:1.4.0-alpha01"
|
|||
androidx-coreKtx = "androidx.core:core-ktx:1.7.0-beta01"
|
||||
androidx-paging-compose = "androidx.paging:paging-compose:1.0.0-alpha12"
|
||||
|
||||
aurora-component = { module = "org.pushing-pixels:aurora-component", version.ref = "aurora" }
|
||||
aurora-skin = { module = "org.pushing-pixels:aurora-skin", version.ref = "aurora" }
|
||||
aurora-window = { module = "org.pushing-pixels:aurora-window", version.ref = "aurora" }
|
||||
|
||||
coil-compose = "io.coil-kt:coil-compose:1.3.2"
|
||||
kamel-image = "com.alialbaali.kamel:kamel-image:0.2.2"
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ pluginManagement {
|
|||
repositories {
|
||||
gradlePluginPortal()
|
||||
mavenCentral()
|
||||
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev") }
|
||||
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
||||
google()
|
||||
}
|
||||
}
|
||||
|
@ -11,7 +11,10 @@ dependencyResolutionManagement {
|
|||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||||
repositories {
|
||||
mavenCentral()
|
||||
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev") }
|
||||
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
||||
maven("https://oss.sonatype.org/content/repositories/snapshots") {
|
||||
content { includeGroup("org.pushing-pixels") }
|
||||
}
|
||||
google()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue