Skip to content

Commit 162e35e

Browse files
committed
chore: update main class path
Signed-off-by: Dasun Abeykoon <[email protected]>
1 parent 24006be commit 162e35e

37 files changed

+294
-269
lines changed

AUTHORS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
```
33
Dasun L. Abeykoon (dabeycorn)
44
Andrew Samulyak (arsamulyak)
5-
```
5+
```

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
![Img](./assets/imgs/cascadeWireframe.webp)
55

6-
- This year's #OpenAlliance [build thread](https://www.chiefdelphi.com/t/6423-iron-patriots-2025-reefscape-build-thread/477430/3)
6+
- This year's #OpenAlliance [build thread](https://www.chiefdelphi.com/t/6423-iron-patriots-2025-reefscape-build-thread/477430/3)

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,10 @@ tasks.withType(JavaCompile) {
127127

128128
// Configure pre-commit hooks on first build
129129
task installGitHooks(type: Copy) {
130+
println("--- Installing Pre-Commit Hook ---")
130131
from '.scripts'
131132
into '.git/hooks'
133+
println("--- Pre-Commit Hook Installed ---")
132134
}
133135
project.compileJava.dependsOn(installGitHooks)
134136

src/main/java/monologue/README.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

src/main/java/lib/utils/CanDeviceId.java renamed to src/main/java/org/frc6423/lib/utils/CanDeviceId.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
// Copyright (c) 2025 FRC 6423 - Ward Melville Iron Patriots
2-
// https://github.com/wmironpatriots
3-
//
4-
// Open Source Software; you can modify and/or share it under the terms of
5-
// MIT license file in the root directory of this project
6-
7-
package lib.utils;
1+
// Copyright (c) 2025 FRC 6423 - Ward Melville Iron Patriots
2+
// https://github.com/FIRSTTeam6423
3+
//
4+
// Open Source Software; you can modify and/or share it under the terms of
5+
// MIT license file in the root directory of this project
6+
7+
package org.frc6423.lib.utils;
88

99
public class CanDeviceId {
1010
private final String busName;

src/main/java/lib/utils/ControllerUtil.java renamed to src/main/java/org/frc6423/lib/utils/ControllerUtil.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
// Copyright (c) 2025 FRC 6423 - Ward Melville Iron Patriots
2-
// https://github.com/wmironpatriots
3-
//
4-
// Open Source Software; you can modify and/or share it under the terms of
5-
// MIT license file in the root directory of this project
6-
7-
package lib.utils;
1+
// Copyright (c) 2025 FRC 6423 - Ward Melville Iron Patriots
2+
// https://github.com/FIRSTTeam6423
3+
//
4+
// Open Source Software; you can modify and/or share it under the terms of
5+
// MIT license file in the root directory of this project
6+
7+
package org.frc6423.lib.utils;
88

99
import edu.wpi.first.math.MathUtil;
1010

src/main/java/lib/utils/ModuleConfig.java renamed to src/main/java/org/frc6423/lib/utils/ModuleConfig.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
// Copyright (c) 2025 FRC 6423 - Ward Melville Iron Patriots
2-
// https://github.com/wmironpatriots
3-
//
4-
// Open Source Software; you can modify and/or share it under the terms of
5-
// MIT license file in the root directory of this project
6-
7-
package lib.utils;
1+
// Copyright (c) 2025 FRC 6423 - Ward Melville Iron Patriots
2+
// https://github.com/FIRSTTeam6423
3+
//
4+
// Open Source Software; you can modify and/or share it under the terms of
5+
// MIT license file in the root directory of this project
6+
7+
package org.frc6423.lib.utils;
88

99
/**
1010
* Represents the constants of a single module

src/main/java/lib/utils/Tracer.java renamed to src/main/java/org/frc6423/lib/utils/Tracer.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
// Copyright (c) 2025 FRC 6423 - Ward Melville Iron Patriots
2-
// https://github.com/wmironpatriots
3-
//
4-
// Open Source Software; you can modify and/or share it under the terms of
5-
// MIT license file in the root directory of this project
6-
7-
package lib.utils;
1+
// Copyright (c) 2025 FRC 6423 - Ward Melville Iron Patriots
2+
// https://github.com/FIRSTTeam6423
3+
//
4+
// Open Source Software; you can modify and/or share it under the terms of
5+
// MIT license file in the root directory of this project
6+
7+
package org.frc6423.lib.utils;
88

99
import edu.wpi.first.networktables.DoublePublisher;
1010
import edu.wpi.first.networktables.NetworkTable;

src/main/java/lib/wpilibExt/CommandRobot.java renamed to src/main/java/org/frc6423/lib/wpilibExt/CommandRobot.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
// Copyright (c) 2025 FRC 6423 - Ward Melville Iron Patriots
2-
// https://github.com/wmironpatriots
3-
//
4-
// Open Source Software; you can modify and/or share it under the terms of
5-
// MIT license file in the root directory of this project
6-
7-
package lib.wpilibExt;
1+
// Copyright (c) 2025 FRC 6423 - Ward Melville Iron Patriots
2+
// https://github.com/FIRSTTeam6423
3+
//
4+
// Open Source Software; you can modify and/or share it under the terms of
5+
// MIT license file in the root directory of this project
6+
7+
package org.frc6423.lib.wpilibExt;
88

99
import edu.wpi.first.wpilibj.TimedRobot;
1010
import edu.wpi.first.wpilibj.Timer;
1111
import edu.wpi.first.wpilibj2.command.Command;
1212
import edu.wpi.first.wpilibj2.command.CommandScheduler;
13-
import lib.utils.Tracer;
13+
import org.frc6423.lib.utils.Tracer;
1414

1515
/**
1616
* @see https://github.com/wpilibsuite/allwpilib/pull/5939

src/main/java/monologue/Annotations.java renamed to src/main/java/org/frc6423/monologue/Annotations.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
// Copyright (c) 2025 FRC 6423 - Ward Melville Iron Patriots
2-
// https://github.com/wmironpatriots
3-
//
4-
// Open Source Software; you can modify and/or share it under the terms of
5-
// MIT license file in the root directory of this project
6-
7-
package monologue;
1+
// Copyright (c) 2025 FRC 6423 - Ward Melville Iron Patriots
2+
// https://github.com/FIRSTTeam6423
3+
//
4+
// Open Source Software; you can modify and/or share it under the terms of
5+
// MIT license file in the root directory of this project
6+
7+
package org.frc6423.monologue;
88

99
import java.lang.annotation.Annotation;
1010
import java.lang.annotation.Documented;

0 commit comments

Comments
 (0)