1.0.0-pre-alpha version
Pre-release
Pre-release
What's Changed
- jector-api: javadoc and code enhancements by @Scrappers-glitch in #1
- jector-publish: GitHub CI/CD publish-scripts by @Scrappers-glitch in #2
- jector-monkey: base API by @Scrappers-glitch in #4
Full Changelog: https://github.com/Software-Hardware-Codesign/Jector/commits/1.0.0-pre-alpha
In order to utilize the
Jector
Framework in your project, add the API to your dependencies and make sure mavenCentral() is defined:
repositories {
mavenCentral()
}
dependencies {
implementation "io.github.software-hardware-codesign:jector:1.0.0-pre-alpha"
}
In order to utilize the
Jector-Monkey
API in your project, make sure Jme dependencies and Jector-Monkey are defined:
repositories {
mavenCentral()
}
dependencies {
implementation "io.github.software-hardware-codesign:jector:1.0.0-pre-alpha"
implementation "io.github.software-hardware-codesign:jector-monkey:1.0.0-pre-alpha"
/* JME-3 desktop dependencies (replace with android and android-native) */
implementation "org.jmonkeyengine:jme3-core:3.6.1-stable"
implementation "org.jmonkeyengine:jme3-desktop:3.6.1-stable"
implementation "org.jmonkeyengine:jme3-lwjgl3:3.6.1-stable"
}