summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruvok2025-07-09 19:23:15 +0200
committeruvok2025-07-09 19:23:15 +0200
commitd9da810adb525e12fb6f1480e117a77a6ed470e8 (patch)
tree88b82a4a296155059267f9e19aa195b650dc1eab
parent28f938d39a80f34eb3cca54a232bcfdb17c2bea2 (diff)
maven: Fix repo for subprojects
-rw-r--r--pom.xml8
1 files changed, 8 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 5dc12a4..af94f88 100644
--- a/pom.xml
+++ b/pom.xml
@@ -16,10 +16,18 @@
</modules>
<repositories>
+<!-- because SOME FUCKING REASON, subprojects search repo in their own dir, which of course does not work.
+Gradle does similar shit.
+What the fuck is wrong with these build systems???
+-->
<repository>
<id>my-local-repo</id>
<url>file://${project.basedir}/repo</url>
</repository>
+ <repository>
+ <id>my-local-repo-extrawurst</id>
+ <url>file://${project.basedir}/../repo</url>
+ </repository>
</repositories>
<properties>