Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chopshop-166/chopshoplib
FRC Team 166's game-agnostic source code library
https://github.com/chopshop-166/chopshoplib
Last synced: 2 months ago
JSON representation
FRC Team 166's game-agnostic source code library
- Host: GitHub
- URL: https://github.com/chopshop-166/chopshoplib
- Owner: chopshop-166
- License: mit
- Created: 2018-08-26T23:36:01.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-06-07T13:58:09.000Z (8 months ago)
- Last Synced: 2024-06-07T15:26:46.628Z (8 months ago)
- Language: Java
- Homepage:
- Size: 1.15 MB
- Stars: 1
- Watchers: 6
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
chopshoplib
===========[![Chopshoplib on jitpack](https://jitpack.io/v/com.chopshop166/chopshoplib.svg)](https://jitpack.io/#com.chopshop166/chopshoplib)
[![Build Status](https://github.com/chopshop-166/chopshoplib/actions/workflows/build.yaml/badge.svg?branch=main)](https://github.com/chopshop-166/chopshoplib/actions)Usage
-----For documentation on classes, see the [javadocs](https://jitpack.io/com/github/chopshop-166/chopshoplib/latest/javadoc/)
To use, in your `build.gradle` add the following:
```groovy
repositories {
maven { url 'https://jitpack.io' }
}dependencies {
compile group: 'com.chopshop166.chopshoplib', name: 'core', version: '2024.1.1'
}
```See [The release page](https://github.com/chopshop-166/chopshoplib/releases) for a list showing the latest tags, or use the latest located in the badge above.
To use a local development version:
```groovy
repositories {
mavenLocal()
}dependencies {
compile group: 'com.chopshop166', name: 'chopshoplib', version: 'unspecified'
}
```Then run `./gradlew publishToMavenLocal` in this project before use in your robot project.