From b0a79ec27315289621cdd3a90b83a09b6ba998f8 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Fri, 21 Feb 2025 11:48:08 +0100 Subject: [PATCH] Improve testing --- README.md | 3 +++ pom.xml | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 pom.xml diff --git a/README.md b/README.md index 828f674..1b1bf40 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,6 @@ This repository contains my NeoVim configs, including some of my snippets. # Issues with jdtls Ensure you have jdk21-opnejdk or newer installed. On Arch (and derivatives) you can switch the preferred java version using `archlinux-java set ` +# Fixing the errors in Java files +Copy the pom.xml file to the root of your project, then run `mvn dependency:resolve` to download the support files + diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..00872e1 --- /dev/null +++ b/pom.xml @@ -0,0 +1,59 @@ + + + 4.0.0 + + com.example + my-java-project + 1.0-SNAPSHOT + jar + + + 11 + 11 + 5.7.2 + + + + + + org.junit.jupiter + junit-jupiter-api + ${junit.version} + test + + + org.junit.jupiter + junit-jupiter-engine + ${junit.version} + test + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.22.2 + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.22.2 + + + + test + + + + + + + +