refactor(connector): implement xpc from GitHub maven repository

This commit is contained in:
Anthony Berg 2024-04-20 15:10:40 +01:00
parent 6aba6e0fc2
commit 88a8d661de
4 changed files with 9 additions and 4 deletions

@ -1 +1 @@
Subproject commit fdb77eb7e77ce83f2770b81aa8736e57b48a803d Subproject commit cfed89f7d5435027e9046987416d22bdaf174c85

Binary file not shown.

View File

@ -15,8 +15,13 @@ 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 { maven {
dirs("lib") 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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"
}
} }
} }
} }

View File

@ -35,7 +35,7 @@ kotlin {
implementation("dk.au.ece.vdmj:vdmj:$vdmjVersion") implementation("dk.au.ece.vdmj:vdmj:$vdmjVersion")
// this feels like the most godawful hack I have created, I am ashamed // 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 { commonTest.dependencies {