Skip to content

Commit 3c3b882

Browse files
authored
Update versions for 2019.2.1 release (#298)
1 parent fa25746 commit 3c3b882

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

examples/cpp/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id "cpp"
33
id "google-test-test-suite"
4-
id "edu.wpi.first.GradleRIO" version "2019.1.1"
4+
id "edu.wpi.first.GradleRIO" version "2019.2.1"
55
}
66

77
// Define my targets (RoboRIO) and artifacts (deployable files)

examples/java/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id "java"
3-
id "edu.wpi.first.GradleRIO" version "2019.1.1"
3+
id "edu.wpi.first.GradleRIO" version "2019.2.1"
44
}
55

66
def ROBOT_MAIN_CLASS = "frc.team0000.robot.Main"

examples/kotlin/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id "org.jetbrains.kotlin.jvm" version "1.3.11"
3-
id "edu.wpi.first.GradleRIO" version "2019.1.1"
3+
id "edu.wpi.first.GradleRIO" version "2019.2.1"
44
}
55

66
def ROBOT_MAIN_CLASS = "frc.team0000.robot.MainKt"

src/main/groovy/edu/wpi/first/gradlerio/wpi/WPIExtension.groovy

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import javax.inject.Inject
1212
@CompileStatic
1313
class WPIExtension {
1414
// WPILib (first.wpi.edu/FRC/roborio/maven) libs
15-
String wpilibVersion = "2019.1.1"
15+
String wpilibVersion = "2019.2.1"
1616
String niLibrariesVersion = "2019.12.1"
1717
String opencvVersion = "3.4.4-4"
1818
static final String[] validImageVersions = ['2019_v12', '2019_v13']
@@ -24,11 +24,11 @@ class WPIExtension {
2424
String jreArtifactLocation = "edu.wpi.first.jdk:roborio-2019:11.0.1u13-1"
2525

2626
// WPILib (first.wpi.edu/FRC/roborio/maven) Utilities
27-
String smartDashboardVersion = "2019.1.1"
28-
String shuffleboardVersion = "2019.1.1"
29-
String outlineViewerVersion = "2019.1.1"
30-
String robotBuilderVersion = "2019.1.1"
31-
String pathWeaverVersion = "2019.1.1"
27+
String smartDashboardVersion = "2019.2.1"
28+
String shuffleboardVersion = "2019.2.1"
29+
String outlineViewerVersion = "2019.2.1"
30+
String robotBuilderVersion = "2019.2.1"
31+
String pathWeaverVersion = "2019.2.1"
3232

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

0 commit comments

Comments
 (0)