Skip to content

Commit

Permalink
Update versions for 2019.2.1 release (#298)
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterJohnson authored Jan 11, 2019
1 parent fa25746 commit 3c3b882
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion examples/cpp/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id "cpp"
id "google-test-test-suite"
id "edu.wpi.first.GradleRIO" version "2019.1.1"
id "edu.wpi.first.GradleRIO" version "2019.2.1"
}

// Define my targets (RoboRIO) and artifacts (deployable files)
Expand Down
2 changes: 1 addition & 1 deletion examples/java/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id "java"
id "edu.wpi.first.GradleRIO" version "2019.1.1"
id "edu.wpi.first.GradleRIO" version "2019.2.1"
}

def ROBOT_MAIN_CLASS = "frc.team0000.robot.Main"
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id "org.jetbrains.kotlin.jvm" version "1.3.11"
id "edu.wpi.first.GradleRIO" version "2019.1.1"
id "edu.wpi.first.GradleRIO" version "2019.2.1"
}

def ROBOT_MAIN_CLASS = "frc.team0000.robot.MainKt"
Expand Down
12 changes: 6 additions & 6 deletions src/main/groovy/edu/wpi/first/gradlerio/wpi/WPIExtension.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import javax.inject.Inject
@CompileStatic
class WPIExtension {
// WPILib (first.wpi.edu/FRC/roborio/maven) libs
String wpilibVersion = "2019.1.1"
String wpilibVersion = "2019.2.1"
String niLibrariesVersion = "2019.12.1"
String opencvVersion = "3.4.4-4"
static final String[] validImageVersions = ['2019_v12', '2019_v13']
Expand All @@ -24,11 +24,11 @@ class WPIExtension {
String jreArtifactLocation = "edu.wpi.first.jdk:roborio-2019:11.0.1u13-1"

// WPILib (first.wpi.edu/FRC/roborio/maven) Utilities
String smartDashboardVersion = "2019.1.1"
String shuffleboardVersion = "2019.1.1"
String outlineViewerVersion = "2019.1.1"
String robotBuilderVersion = "2019.1.1"
String pathWeaverVersion = "2019.1.1"
String smartDashboardVersion = "2019.2.1"
String shuffleboardVersion = "2019.2.1"
String outlineViewerVersion = "2019.2.1"
String robotBuilderVersion = "2019.2.1"
String pathWeaverVersion = "2019.2.1"

// WPILib Toolchain (https://github.com/wpilibsuite/toolchain-builder/releases/latest) version and tag
String toolchainTag = 'v2019-3'
Expand Down

0 comments on commit 3c3b882

Please sign in to comment.