https://github.com/pantherbotics/pantherbotics-libraries
FRC Team 3863's Robot Code Libraries
https://github.com/pantherbotics/pantherbotics-libraries
Last synced: 3 months ago
JSON representation
FRC Team 3863's Robot Code Libraries
- Host: GitHub
- URL: https://github.com/pantherbotics/pantherbotics-libraries
- Owner: Pantherbotics
- License: other
- Created: 2022-04-29T03:06:44.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-29T05:00:52.000Z (about 3 years ago)
- Last Synced: 2025-01-02T07:26:41.524Z (5 months ago)
- Language: Java
- Homepage:
- Size: 74.2 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pantherbotics-Libraries
FRC Team 3863's Robot Code Libraries**INSTRUCTIONS:**
1. Open your existing FRC project setup with vs code or your IDE.
2. Add the following lines to the bottom of settings.gradle. (We utilize this plugin to automatically grab the github repo.)
```
plugins {
id 'com.alexvasilkov.git-dependencies' version '2.0.1'
}
```
3. Add the following lines to the bottom of build.gradle.
```
git {
implementation 'https://github.com/Pantherbotics/Pantherbotics-Libraries.git', {
commit '9b23110'
}
}
```
5. Check that the string after commit is up to date ('9b23110'). The commit id is located in the image in the red box.
Every time there is another commit, this id will change and you'll need to update build.gradle to get the latest version. For instance, committing this readme created a new id 'e03ccd9'.