commit 06565cc2821c1148c081e5abc21246061e621414 Author: Steffen Helmke Date: Wed Dec 15 15:12:20 2021 +0100 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..046bbd6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,40 @@ +# Maven +target/ +pom.xml.tag +pom.xml.releaseBackup +pom.xml.versionsBackup +pom.xml.next +release.properties +dependency-reduced-pom.xml +buildNumber.properties +.mvn/timing.properties + +# Java +*.class + +# Package Files # +*.jar +*.war +*.ear + +# eclipse +.metadata +bin/ +tmp/ +*.tmp +*.bak +*.swp +*~.nib +local.properties +.settings/ +.loadpath +.recommenders + +# Eclipse Core +.project + +# JDT-specific (Eclipse Java Development Tools) +.classpath + +# VsCode +.vscode/ \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..3b81774 --- /dev/null +++ b/pom.xml @@ -0,0 +1,82 @@ + + + 4.0.0 + de.lorenz + FizzBuzz + 0.0.1-SNAPSHOT + jar + FizzBuzz + http://maven.apache.org + + UTF-8 + 11 + 11 + 5.8.1 + 1.8.1 + 3.21.0 + 3.8.1 + 4.1.0 + 4.1.0 + 1.0.1 + 2.19.1 + + + + junit + junit + ${junit.version} + test + + + org.junit.jupiter + junit-jupiter-api + ${junit.jupiter.version} + test + + + org.junit.jupiter + junit-jupiter-params + ${junit.jupiter.version} + test + + + org.assertj + assertj-core + ${assertj.version} + test + + + org.mockito + mockito-core + ${mockito.core.version} + test + + + org.mockito + mockito-junit-jupiter + ${mockito.junit.jupiter.version} + test + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven.surefire.plugin.verison} + + + org.junit.platform + junit-platform-surefire-provider + ${junit.platform.surefire.provider.version} + + + org.junit.jupiter + junit-jupiter-engine + ${junit.jupiter.version} + + + + + + \ No newline at end of file