File tree Expand file tree Collapse file tree 3 files changed +15
-4
lines changed
src/main/java/org/frc6423/frc2025 Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 1212
1313def ROBOT_MAIN_CLASS = " org.frc6423.frc2025.Main"
1414
15+ version = ' 1.0.0'
16+
1517// Define my targets (RoboRIO) and artifacts (deployable files)
1618// This is added by GradleRIO's backing project DeployUtils.
1719deploy {
Original file line number Diff line number Diff line change @@ -22,7 +22,12 @@ public class Robot extends LoggedRobot {
2222
2323 public Robot () {
2424 // AKit init
25- Logger .recordMetadata ("ProjectName" , "FRCWMIronPatriots2025" );
25+ Logger .recordMetadata ("ProjectName" , BuildConstants .MAVEN_NAME );
26+ Logger .recordMetadata ("Version" , BuildConstants .VERSION );
27+ Logger .recordMetadata ("BuildDate" , BuildConstants .BUILD_DATE );
28+ Logger .recordMetadata ("Dirty" , String .valueOf (BuildConstants .DIRTY ));
29+ Logger .recordMetadata ("GitBranch" , BuildConstants .GIT_BRANCH );
30+ Logger .recordMetadata ("GitSHA" , BuildConstants .GIT_SHA );
2631
2732 switch (getDeployMode ()) {
2833 case SIMULATION :
Original file line number Diff line number Diff line change 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+
17package org .frc6423 .frc2025 .subsystems ;
28
3- public class Superstructure {
4-
5- }
9+ public class Superstructure {}
You can’t perform that action at this time.
0 commit comments