Skip to content

Commit d76baa3

Browse files
committed
Update paths for 2027 (#10)
1 parent 395df42 commit d76baa3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group 'org.photonvision'
11-
version '2.4.1-photon'
11+
version '3.0.0-photon'
1212

1313
if (project.hasProperty('publishVersion')) {
1414
version = project.publishVersion

src/main/java/org/photonvision/tools/NativeConfigurator.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ public Dependency wpilibJava(String name) {
3333
}
3434

3535
public Dependency wpilibJava(String name, String version) {
36-
return handler.create("edu.wpi.first." + name + ":" + name + "-java:" + version);
36+
return handler.create("org.wpilib." + name + ":" + name + "-java:" + version);
3737
}
3838

3939
public Dependency wpilib(String name, String version) {
4040
return handler.create(
41-
"edu.wpi.first."
41+
"org.wpilib."
4242
+ name
4343
+ ":"
4444
+ name
@@ -55,7 +55,7 @@ public Dependency wpilib(String name) {
5555

5656
public Dependency cscore(String version) {
5757
return handler.create(
58-
"edu.wpi.first.cscore:cscore-jnicvstatic:"
58+
"org.wpilib.cscore:cscore-jnicvstatic:"
5959
+ version
6060
+ ":"
6161
+ platformMapper.getWpilibClassifier()

0 commit comments

Comments
 (0)