desktop: add Aurora dependencies

This commit is contained in:
Harsh Shandilya 2021-09-25 02:40:36 +05:30
parent 43f441ded9
commit 5e9bdd2a1b
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
3 changed files with 13 additions and 2 deletions

View file

@ -16,6 +16,9 @@ kotlin {
val jvmMain by getting { val jvmMain by getting {
dependencies { dependencies {
implementation(projects.common) implementation(projects.common)
implementation(libs.aurora.component)
implementation(libs.aurora.skin)
implementation(libs.aurora.window)
implementation(compose.desktop.currentOs) implementation(compose.desktop.currentOs)
} }
} }

View file

@ -1,5 +1,6 @@
[versions] [versions]
accompanist = "0.18.0" accompanist = "0.18.0"
aurora = "0.0.54-SNAPSHOT"
coroutines = "1.5.2" coroutines = "1.5.2"
hilt = "2.38.1" hilt = "2.38.1"
moshix = "0.14.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-coreKtx = "androidx.core:core-ktx:1.7.0-beta01"
androidx-paging-compose = "androidx.paging:paging-compose:1.0.0-alpha12" 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" coil-compose = "io.coil-kt:coil-compose:1.3.2"
kamel-image = "com.alialbaali.kamel:kamel-image:0.2.2" kamel-image = "com.alialbaali.kamel:kamel-image:0.2.2"

View file

@ -2,7 +2,7 @@ pluginManagement {
repositories { repositories {
gradlePluginPortal() gradlePluginPortal()
mavenCentral() mavenCentral()
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev") } maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
google() google()
} }
} }
@ -11,7 +11,10 @@ dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories { repositories {
mavenCentral() 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() google()
} }
} }