From 2e3ddf550201c4e34e1cc87ee9cb39bd6a05a5f5 Mon Sep 17 00:00:00 2001 From: Ryan Blue Date: Sun, 17 Sep 2023 00:12:18 -0400 Subject: [PATCH] Update versions in development builds instructions to 2024 (#5647) --- DevelopmentBuilds.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/DevelopmentBuilds.md b/DevelopmentBuilds.md index e452f3adf9..bf37a03441 100644 --- a/DevelopmentBuilds.md +++ b/DevelopmentBuilds.md @@ -8,7 +8,7 @@ This article contains instructions on building projects using a development buil Development builds are the per-commit build hosted every time a commit is pushed to the [allwpilib](https://github.com/wpilibsuite/allwpilib/) repository. These builds are then hosted on [artifactory](https://frcmaven.wpi.edu/artifactory/webapp/#/home). -To build a project using a development build, find the build.gradle file and open it. Then, add the following code below the plugin section and replace YEAR with the year of the development version. It is also necessary to use a 2023 GradleRIO version, ie `2023.0.0-alpha-1` +To build a project using a development build, find the build.gradle file and open it. Then, add the following code below the plugin section and replace YEAR with the year of the development version. It is also necessary to use a 2024 GradleRIO version, ie `2024.0.0-alpha-1` ```groovy wpi.maven.useLocal = false @@ -23,13 +23,13 @@ Java ```groovy plugins { id "java" - id "edu.wpi.first.GradleRIO" version "2023.0.0-alpha-1" + id "edu.wpi.first.GradleRIO" version "2024.0.0-alpha-1" } wpi.maven.useLocal = false wpi.maven.useDevelopment = true -wpi.versions.wpilibVersion = '2023.+' -wpi.versions.wpimathVersion = '2023.+' +wpi.versions.wpilibVersion = '2024.+' +wpi.versions.wpimathVersion = '2024.+' ``` C++ @@ -37,13 +37,13 @@ C++ plugins { id "cpp" id "google-test-test-suite" - id "edu.wpi.first.GradleRIO" version "2023.0.0-alpha-1" + id "edu.wpi.first.GradleRIO" version "2024.0.0-alpha-1" } wpi.maven.useLocal = false wpi.maven.useDevelopment = true -wpi.versions.wpilibVersion = '2023.+' -wpi.versions.wpimathVersion = '2023.+' +wpi.versions.wpilibVersion = '2024.+' +wpi.versions.wpimathVersion = '2024.+' ``` ### Development Build Documentation @@ -59,7 +59,7 @@ Java ```groovy plugins { id "java" - id "edu.wpi.first.GradleRIO" version "2023.0.0-alpha-1" + id "edu.wpi.first.GradleRIO" version "2024.0.0-alpha-1" } wpi.maven.useLocal = false @@ -73,7 +73,7 @@ C++ plugins { id "cpp" id "google-test-test-suite" - id "edu.wpi.first.GradleRIO" version "2023.0.0-alpha-1" + id "edu.wpi.first.GradleRIO" version "2024.0.0-alpha-1" } wpi.maven.useLocal = false