diff options
author | uvok | 2025-07-09 19:23:15 +0200 |
---|---|---|
committer | uvok | 2025-07-09 19:23:15 +0200 |
commit | d9da810adb525e12fb6f1480e117a77a6ed470e8 (patch) | |
tree | 88b82a4a296155059267f9e19aa195b650dc1eab | |
parent | 28f938d39a80f34eb3cca54a232bcfdb17c2bea2 (diff) |
maven: Fix repo for subprojects
-rw-r--r-- | pom.xml | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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> |