Skip to content

Commit 38135ca

Browse files
committed
defaults for src and resources changed. Resources are no more fetched from current folder
1 parent d8aa1d6 commit 38135ca

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/airhacks/zb/discovery/control/ResourceLocator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
public interface ResourceLocator {
99

10-
List<String> candidates = List.of("src/main/resources", ".");
10+
List<String> candidates = List.of("src/main/resources","resources");
1111

1212
static Optional<Path> detectResourcesDirectory() {
1313
var currentDir = Path.of(".");

src/main/java/airhacks/zb/discovery/control/SourceLocator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
public interface SourceLocator {
99

10-
List<String> candidates = List.of("src/main/java", "src/", ".");
10+
List<String> candidates = List.of("src/main/java", "src/",".");
1111

1212
static Optional<Path> detectSourceDirectory() {
1313
var currentDir = Path.of(".");

src/main/resources/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2026.06.10.01
1+
2026.06.17.01

0 commit comments

Comments
 (0)