A simple library that allows to use the WLDT Framework for the creation of WoDT Digital Twins in a WoDT ecosystem.
wldt-wodt-adapter | wldt-core 0.2.1 | wldt-core 0.3.0 |
---|---|---|
<= 2.x.y | ✅ | ❌ |
>= 3.x.y | ❌ | ✅ |
In order to use the library add the dependency to your project:
repositories {
mavenCentral()
maven {
url = uri("https://git.informatik.uni-hamburg.de/api/v4/groups/sane-public/-/packages/maven")
}
maven {
url = uri("https://maven.pkg.github.com/WebBased-WoDT/wldt-wodt-adapter")
credentials {
username = project.findProperty("ghPackagesUsername")?.toString() ?: ghPackageUsername
password = project.findProperty("ghPackagesPwd")?.toString() ?: ghPackagesPwd
}
}
}
dependencies {
implementation("io.github.webbasedwodt:wldt-wodt-adapter:<version>")
}