summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml26
1 files changed, 21 insertions, 5 deletions
diff --git a/pom.xml b/pom.xml
index 30fdd7f..c14f274 100644
--- a/pom.xml
+++ b/pom.xml
@@ -16,10 +16,11 @@
</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???
--->
+ <!-- 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>
@@ -56,6 +57,11 @@ What the fuck is wrong with these build systems???
<artifactId>jackson-core</artifactId>
<version>2.19.1</version>
</dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ <version>2.19.1</version>
+ </dependency>
</dependencies>
<build>
@@ -65,6 +71,16 @@ What the fuck is wrong with these build systems???
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M8</version>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <configuration>
+ <outputDirectory>
+ ${project.build.directory}
+ </outputDirectory>
+ </configuration>
+ </plugin>
+
</plugins>
</build>
@@ -76,4 +92,4 @@ What the fuck is wrong with these build systems???
</properties>
</profile>
</profiles>
-</project>
+</project> \ No newline at end of file