From d579b8e903b5dc8befc6a11474a2d4af96cf4456 Mon Sep 17 00:00:00 2001 From: laingke Date: Fri, 19 Jul 2019 14:16:37 +0800 Subject: [PATCH] feat: Add Maven frameworks support. 1. Add JUnit Jupiter dependency; 2. Add maven-resources-plugin to fix path problem in SimplexNoise testcase; 3. Add maven-compiler-plugin to tell the default compiler version; --- pom.xml | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 pom.xml diff --git a/pom.xml b/pom.xml new file mode 100644 index 00000000..4bba7c6d --- /dev/null +++ b/pom.xml @@ -0,0 +1,64 @@ + + + 4.0.0 + + algorithm + java-algorithm + 1.0-SNAPSHOT + java-algorithm + All algorithms implemented in Java (for education) + + + UTF-8 + 3.1.0 + 3.8.0 + + 1.8 + UTF-8 + + 5.5.0 + + + + + org.junit.jupiter + junit-jupiter-api + ${junit-jupiter-api.version} + test + + + + + + + org.apache.maven.plugins + maven-resources-plugin + ${resources.plugin.version} + + ${file.encoding} + + + + org.apache.maven.plugins + maven-compiler-plugin + ${compiler.plugin.version} + + ${java.version} + ${java.version} + ${file.encoding} + + + + + + + src/main/resources + + + src/test/resources + + + +