Skip to content

Commit 007ae47

Browse files
committed
Fix issue with not able to download if tests are failing
1 parent 6bd9ac6 commit 007ae47

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

Makefile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,16 @@ clean:
2020
uberjar: clean
2121
./mvnw install
2222

23+
.PHONY: uberjar-no-tests
24+
uberjar-no-tests: clean
25+
./mvnw install -DskipTests=true
26+
2327
.PHONY: download
24-
download: uberjar
28+
download: uberjar-no-tests
2529
java -jar ./target/solver-1.0.0.jar check -a -f
2630

2731
.PHONY: redownload
28-
redownload: uberjar
32+
redownload: uberjar-no-tests
2933
java -jar ./target/solver-1.0.0.jar check -a -c -f
3034

3135
.PHONY: solve

src/main/java/dev/aoc/starter/solution/year2024/Day1Puzzle1.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
public record Day1Puzzle1() implements Solution {
1414
@Override
1515
public Object solve(String input) {
16-
return "11"; //"Not Implemented";
16+
return "Not Implemented";
1717
}
1818
}

0 commit comments

Comments
 (0)