Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 1.09 KB

README.md

File metadata and controls

38 lines (27 loc) · 1.09 KB

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.