Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/frc3494/3494_2019_repo
FRC team 3494's 2019 robot source code.
https://github.com/frc3494/3494_2019_repo
frc frc-robot frc3494 frcjava java robot robotics robotics-competition wpilib
Last synced: 25 days ago
JSON representation
FRC team 3494's 2019 robot source code.
- Host: GitHub
- URL: https://github.com/frc3494/3494_2019_repo
- Owner: FRC3494
- License: gpl-3.0
- Created: 2019-01-04T19:34:11.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-15T12:20:27.000Z (almost 6 years ago)
- Last Synced: 2024-11-14T23:19:16.193Z (3 months ago)
- Topics: frc, frc-robot, frc3494, frcjava, java, robot, robotics, robotics-competition, wpilib
- Language: Java
- Size: 482 KB
- Stars: 2
- Watchers: 5
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
3494\_2019\_repo
---[![Build Status](https://travis-ci.com/BHSSFRC/3494_2019_repo.svg?branch=master)](https://travis-ci.com/BHSSFRC/3494_2019_repo)
:coffee: :robot:FRC Team 3494's 2019 source code repository.
### Using this code with IntelliJ IDEA
#### Initial configuration
Initial config after cloning is quite simple. Simply `cd` into the
source directory and run `./gradlew idea` (on *NIX) or `gradlew.bat idea`
(on Windows.)#### Updating vendor libraries
If vendor libraries have been updated or changed (read: any changes made to the `vendordeps` directory),
IDEA has to be made aware of these changes. The process is sadly convoluted, but
can be described with a set of one-after-the-other steps.
1. Close IntelliJ. This is actually an important step - you'll get into a bad state if you don't.
2. Delete all of the IntelliJ files. By default, these are:
* `3494_2019_repo.iml`
* `3494_2019_repo.ipr`
* `3494_2019_repo.iws`
* `3494_2019_repo.main.iml`
* `3494_2019_repo.test.iml`
3. Re-run the `idea` Gradle task.
4. Open IntelliJ again. You should be prompted to import the Gradle project again, and if all goes well, should have no
issues after indexing finishes.~~Blame WPI.~~