build(connector): add XPlaneConnect dependency

This commit is contained in:
Anthony Berg 2024-04-18 03:37:09 +01:00
parent bdd78eb5ff
commit 52dd166e49
3 changed files with 12 additions and 1 deletions

Binary file not shown.

View File

@ -15,9 +15,16 @@ dependencyResolutionManagement {
google() google()
mavenCentral() mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
flatDir {
dirs("lib")
}
} }
} }
include(":composeApp") include(":composeApp")
include(":server") include(":server")
include(":shared") include(":shared")
//include(":lib:xpc:buildSrc")
//include(":lib:xpc")
//project(":lib:xpc:buildSrc").projectDir = file("lib/xpc/buildSrc")
//project(":xpc:xpc").projectDir = file("lib/xpc/xpc")

View File

@ -28,6 +28,10 @@ kotlin {
implementation("org.jetbrains.kotlinx:kotlinx-datetime:$dateTimeVersion") implementation("org.jetbrains.kotlinx:kotlinx-datetime:$dateTimeVersion")
implementation("org.slf4j:slf4j-api:$sl4jVersion") implementation("org.slf4j:slf4j-api:$sl4jVersion")
implementation("org.slf4j:slf4j-reload4j:$sl4jVersion") implementation("org.slf4j:slf4j-reload4j:$sl4jVersion")
// this feels like the most godawful hack I have created, I am ashamed
implementation("gov.nasa.xpc-parent:xpc:1.4.0-SNAPSHOT")
} }
commonTest.dependencies { commonTest.dependencies {
implementation(libs.kotlin.test) implementation(libs.kotlin.test)