Skip to content

Commit 75e7e7e

Browse files
committed
Update versions in development builds instructions to 2024
1 parent 19a8850 commit 75e7e7e

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

DevelopmentBuilds.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This article contains instructions on building projects using a development buil
88

99
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).
1010

11-
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`
11+
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`
1212

1313
```groovy
1414
wpi.maven.useLocal = false
@@ -23,27 +23,27 @@ Java
2323
```groovy
2424
plugins {
2525
id "java"
26-
id "edu.wpi.first.GradleRIO" version "2023.0.0-alpha-1"
26+
id "edu.wpi.first.GradleRIO" version "2024.0.0-alpha-1"
2727
}
2828
2929
wpi.maven.useLocal = false
3030
wpi.maven.useDevelopment = true
31-
wpi.versions.wpilibVersion = '2023.+'
32-
wpi.versions.wpimathVersion = '2023.+'
31+
wpi.versions.wpilibVersion = '2024.+'
32+
wpi.versions.wpimathVersion = '2024.+'
3333
```
3434

3535
C++
3636
```groovy
3737
plugins {
3838
id "cpp"
3939
id "google-test-test-suite"
40-
id "edu.wpi.first.GradleRIO" version "2023.0.0-alpha-1"
40+
id "edu.wpi.first.GradleRIO" version "2024.0.0-alpha-1"
4141
}
4242
4343
wpi.maven.useLocal = false
4444
wpi.maven.useDevelopment = true
45-
wpi.versions.wpilibVersion = '2023.+'
46-
wpi.versions.wpimathVersion = '2023.+'
45+
wpi.versions.wpilibVersion = '2024.+'
46+
wpi.versions.wpimathVersion = '2024.+'
4747
```
4848

4949
### Development Build Documentation
@@ -59,7 +59,7 @@ Java
5959
```groovy
6060
plugins {
6161
id "java"
62-
id "edu.wpi.first.GradleRIO" version "2023.0.0-alpha-1"
62+
id "edu.wpi.first.GradleRIO" version "2024.0.0-alpha-1"
6363
}
6464
6565
wpi.maven.useLocal = false
@@ -73,7 +73,7 @@ C++
7373
plugins {
7474
id "cpp"
7575
id "google-test-test-suite"
76-
id "edu.wpi.first.GradleRIO" version "2023.0.0-alpha-1"
76+
id "edu.wpi.first.GradleRIO" version "2024.0.0-alpha-1"
7777
}
7878
7979
wpi.maven.useLocal = false

0 commit comments

Comments
 (0)