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
To use a custom build of native-utils in a robot project, the build must be published, and a GradleRIO build that uses the new version must be pulished.
213
+
214
+
1. Update the version in `build.gradle` so that native-utils won't overwrite an existing version.
215
+
```
216
+
allprojects {
217
+
group = "edu.wpi.first"
218
+
version = "2024.3.1"
219
+
```
220
+
2. Execute `.\gradlew publishToMavenLocal`
221
+
3. Update native-utils version in GradleRIO ``build.gradle``: ``api 'edu.wpi.first:native-utils:2024.3.1'``
222
+
4. Follow the directions in the  for publishing a local build and using in a robot program
0 commit comments