diff options
-rw-r--r-- | pom.xml | 26 |
1 files changed, 21 insertions, 5 deletions
@@ -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 |