Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

Team865/FRC-Commons-Kotlin

Repository files navigation

FRC-Commons-Kotlin

A Kotlin library for common FRC math and control flow

Build Release

Usage

Robot Project (Vendor File)

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": []
}

Non-Robot Gradle Project

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")
}