You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DevelopmentBuilds.md
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ This article contains instructions on building projects using a development buil
8
8
9
9
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).
10
10
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`
12
12
13
13
```groovy
14
14
wpi.maven.useLocal = false
@@ -23,27 +23,27 @@ Java
23
23
```groovy
24
24
plugins {
25
25
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"
27
27
}
28
28
29
29
wpi.maven.useLocal = false
30
30
wpi.maven.useDevelopment = true
31
-
wpi.versions.wpilibVersion = '2023.+'
32
-
wpi.versions.wpimathVersion = '2023.+'
31
+
wpi.versions.wpilibVersion = '2024.+'
32
+
wpi.versions.wpimathVersion = '2024.+'
33
33
```
34
34
35
35
C++
36
36
```groovy
37
37
plugins {
38
38
id "cpp"
39
39
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"
41
41
}
42
42
43
43
wpi.maven.useLocal = false
44
44
wpi.maven.useDevelopment = true
45
-
wpi.versions.wpilibVersion = '2023.+'
46
-
wpi.versions.wpimathVersion = '2023.+'
45
+
wpi.versions.wpilibVersion = '2024.+'
46
+
wpi.versions.wpimathVersion = '2024.+'
47
47
```
48
48
49
49
### Development Build Documentation
@@ -59,7 +59,7 @@ Java
59
59
```groovy
60
60
plugins {
61
61
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"
63
63
}
64
64
65
65
wpi.maven.useLocal = false
@@ -73,7 +73,7 @@ C++
73
73
plugins {
74
74
id "cpp"
75
75
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"
0 commit comments