chopshop-166 / chopshoplib

FRC Team 166's game-agnostic source code library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

chopshoplib

Chopshoplib on jitpack Build Status

Usage

For documentation on classes, see the javadocs

To use, in your build.gradle add the following:

repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    compile group: 'com.chopshop166.chopshoplib', name: 'core', version: '2024.1.1'
}

See The release page for a list showing the latest tags, or use the latest located in the badge above.

To use a local development version:

repositories {
    mavenLocal()
}

dependencies {
    compile group: 'com.chopshop166', name: 'chopshoplib', version: 'unspecified'
}

Then run ./gradlew publishToMavenLocal in this project before use in your robot project.

About

FRC Team 166's game-agnostic source code library

License:MIT License


Languages

Language:Java 100.0%