HAND FIXES: Fixup remaining rename issues

This commit is contained in:
PJ Reiniger
2025-11-07 19:58:22 -05:00
committed by Peter Johnson
parent bf9da2cdea
commit d3da30d53a
9 changed files with 12 additions and 57 deletions

View File

@@ -2,8 +2,8 @@ load("@rules_java//java:defs.bzl", "java_binary")
java_binary(
name = "multiCameraServer-java",
srcs = ["src/main/java/edu/wpi/Main.java"],
main_class = "edu.wpi.Main",
srcs = ["src/main/java/org/wpilib/Main.java"],
main_class = "org.wpilib.Main",
deps = [
"//cameraserver:cameraserver-java",
"//cscore:cscore-java",

View File

@@ -19,7 +19,7 @@ ext {
apply from: "${rootDir}/shared/opencv.gradle"
application {
mainClass = 'edu.wpi.Main'
mainClass = 'org.wpilib.Main'
}
apply plugin: 'com.gradleup.shadow'

View File

@@ -2,7 +2,7 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
package edu.wpi;
package org.wpilib;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;