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
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ This article contains instructions on building projects using a development buil
13
13
14
14
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).
15
15
16
-
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 2025 GradleRIO version, ie `2025.1.1-beta-1`
16
+
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 2026 GradleRIO version, ie `2026.1.1`
17
17
18
18
```groovy
19
19
wpi.maven.useLocal = false
@@ -28,27 +28,27 @@ Java
28
28
```groovy
29
29
plugins {
30
30
id "java"
31
-
id "edu.wpi.first.GradleRIO" version "2025.1.1-beta-1"
31
+
id "edu.wpi.first.GradleRIO" version "2026.1.1"
32
32
}
33
33
34
34
wpi.maven.useLocal = false
35
35
wpi.maven.useDevelopment = true
36
-
wpi.versions.wpilibVersion = '2025.+'
37
-
wpi.versions.wpimathVersion = '2025.+'
36
+
wpi.versions.wpilibVersion = '2026.+'
37
+
wpi.versions.wpimathVersion = '2026.+'
38
38
```
39
39
40
40
C++
41
41
```groovy
42
42
plugins {
43
43
id "cpp"
44
44
id "google-test-test-suite"
45
-
id "edu.wpi.first.GradleRIO" version "2025.1.1-beta-1"
45
+
id "edu.wpi.first.GradleRIO" version "2026.1.1"
46
46
}
47
47
48
48
wpi.maven.useLocal = false
49
49
wpi.maven.useDevelopment = true
50
-
wpi.versions.wpilibVersion = '2025.+'
51
-
wpi.versions.wpimathVersion = '2025.+'
50
+
wpi.versions.wpilibVersion = '2026.+'
51
+
wpi.versions.wpimathVersion = '2026.+'
52
52
```
53
53
54
54
### Development Build Documentation
@@ -64,7 +64,7 @@ Java
64
64
```groovy
65
65
plugins {
66
66
id "java"
67
-
id "edu.wpi.first.GradleRIO" version "2025.1.1-beta-1"
67
+
id "edu.wpi.first.GradleRIO" version "2026.1.1"
68
68
}
69
69
70
70
wpi.maven.useLocal = false
@@ -78,7 +78,7 @@ C++
78
78
plugins {
79
79
id "cpp"
80
80
id "google-test-test-suite"
81
-
id "edu.wpi.first.GradleRIO" version "2025.1.1-beta-1"
0 commit comments