diff --git a/XPlaneConnect b/XPlaneConnect index fdb77eb..cfed89f 160000 --- a/XPlaneConnect +++ b/XPlaneConnect @@ -1 +1 @@ -Subproject commit fdb77eb7e77ce83f2770b81aa8736e57b48a803d +Subproject commit cfed89f7d5435027e9046987416d22bdaf174c85 diff --git a/connector/lib/xpc-1.4.0-SNAPSHOT.jar b/connector/lib/xpc-1.4.0-SNAPSHOT.jar deleted file mode 100644 index 779a3e1..0000000 Binary files a/connector/lib/xpc-1.4.0-SNAPSHOT.jar and /dev/null differ diff --git a/connector/settings.gradle.kts b/connector/settings.gradle.kts index 384b4c2..4efeab0 100644 --- a/connector/settings.gradle.kts +++ b/connector/settings.gradle.kts @@ -15,8 +15,13 @@ dependencyResolutionManagement { google() mavenCentral() maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") - flatDir { - dirs("lib") + maven { + url = uri("https://maven.pkg.github.com/smyalygames/XPlaneConnect") + credentials { + username = "smyalygames" + // Most awful way of storing a token - it's read only anyway + password = "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" + } } } } diff --git a/connector/shared/build.gradle.kts b/connector/shared/build.gradle.kts index bdfb3ff..abbd8c3 100644 --- a/connector/shared/build.gradle.kts +++ b/connector/shared/build.gradle.kts @@ -35,7 +35,7 @@ kotlin { implementation("dk.au.ece.vdmj:vdmj:$vdmjVersion") // this feels like the most godawful hack I have created, I am ashamed - implementation("gov.nasa.xpc-parent:xpc:1.4.0-SNAPSHOT") + implementation("gov.nasa.xpc:xpc:1.4.0-SNAPSHOT") } commonTest.dependencies {