Skip to content

Commit

Permalink
Merge branch 'dev' into dev-intake
Browse files Browse the repository at this point in the history
  • Loading branch information
Gitter499 authored Jan 24, 2024
2 parents d7f5a07 + 6f27170 commit 61e5548
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ spotless {
java {
target fileTree('.') {
include '**/*.java'
exclude '**/build/**', '**/build-*/**'
exclude '**/build/**', '**/build-*/**','**/BuildConstants.java'
}
toggleOffOn()
googleJavaFormat().reflowLongStrings()
Expand Down Expand Up @@ -148,7 +148,7 @@ spotless {
format 'misc', {
target fileTree('.') {
include '**/*.md', '**/.gitignore'
exclude '**/build/**', '**/build-*/**'
exclude '**/build/**', '**/build-*/**', '**/BuildConstants.java'
}
trimTrailingWhitespace()
indentWithSpaces(2)
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/org/robolancers321/BuildConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ public final class BuildConstants {
public static final String MAVEN_GROUP = "";
public static final String MAVEN_NAME = "321-Crescendo-2024";
public static final String VERSION = "unspecified";

public static final int GIT_REVISION = 6;
public static final String GIT_SHA = "6377635d69d5713f8f8b5400fc7a136abe5c431e";
public static final String GIT_DATE = "2024-01-21 18:36:14 EST";
Expand All @@ -15,5 +16,6 @@ public final class BuildConstants {
public static final long BUILD_UNIX_TIME = 1706102320667L;
public static final int DIRTY = 0;


private BuildConstants(){}
}

0 comments on commit 61e5548

Please sign in to comment.