1294's robot and dashboard software for the 2016 season
Java
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
gradle/wrapper
src/main/java/org/usfirst/frc/team1294/robot
.gitignore
.travis.yml
LICENSE
README.md
bintray.json
build.gradle
gradlew
gradlew.bat
oi.md

README.md

frc2016 Build Status Download

The official robot code for the 2016 FIRST Robotics Competition game, FIRST Stronghold.

Release Plugin instructions

  • First, make sure that your local repo has all the tags, a normal git pull will not make that happen.

    git fetch --tag
    
  • Then, you can create your new release

    • To create a new patch version (v0.0.1)

      gradlew release -Prelease.scope=patch -Prelease.stage=final
      
    • To create a new minor version (v0.1.0)

      gradlew release -Prelease.scope=minor -Prelease.stage=final
      
    • To create a new major version (v1.0.0)

      gradlew release -Prelease.scope=major -Prelease.stage=final