A Kotlin library for common FRC math and control flow
Copy this code into Commons.json
in the vendordeps
folder of a robot project:
{
"fileName": "Commons.json",
"name": "FRC-Commons-Kotlin",
"version": "2019.9.0",
"uuid": "ab676553-b602-441f-a38d-f1296eff6538",
"mavenUrls": [
"https://jitpack.io"
],
"jsonUrl": "",
"javaDependencies": [
{
"groupId": "com.github.Team865",
"artifactId": "FRC-Commons-Kotlin",
"version": "2019.9.0"
}
],
"jniDependencies": [],
"cppDependencies": []
}
Use the following in the build.gradle.kts
file
repositories {
maven {
setUrl("https://jitpack.io")
}
}
dependencies {
implementation(group="com.github.Team865", name="FRC-Commons-Kotlin", version="2019.9.0")
}