diff --git a/out/production/Travel-Buddy-PR2/README.md b/out/production/Travel-Buddy-PR2/README.md new file mode 100644 index 0000000..210c76d --- /dev/null +++ b/out/production/Travel-Buddy-PR2/README.md @@ -0,0 +1 @@ +Travel Buddy Projekt von Jan Bachmann und Victor Waitz \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..a0c8444 --- /dev/null +++ b/pom.xml @@ -0,0 +1,117 @@ + + 4.0.0 + de.hs_mannheim + Travel-Buddy-PR2 + 0.0.1-SNAPSHOT + + + UTF-8 + 22 + 22 + + + + + org.junit.jupiter + junit-jupiter-api + 5.8.1 + test + + + + org.junit.jupiter + junit-jupiter-engine + 5.8.1 + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + org.apache.maven.plugins + maven-shade-plugin + 3.2.4 + + + package + + shade + + + + + + src.main.java.com.example.helloWorld + + + + + + + + + + org.jacoco + jacoco-maven-plugin + 0.8.12 + + + + prepare-agent + + + + report + test + + report + + + + + + + + org.apache.maven.plugins + maven-pmd-plugin + 3.22.0 + + + verify + + check + + + + + + + + org.owasp + dependency-check-maven + 9.2.0 + + + + check + + + + + + + + + \ No newline at end of file diff --git a/src/main/java/com/example/helloWorld.java b/src/main/java/com/example/helloWorld.java new file mode 100644 index 0000000..97f1282 --- /dev/null +++ b/src/main/java/com/example/helloWorld.java @@ -0,0 +1,7 @@ +package com.example; + +public class helloWorld { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} diff --git a/target/classes/com/example/helloWorld.class b/target/classes/com/example/helloWorld.class new file mode 100644 index 0000000..11182be Binary files /dev/null and b/target/classes/com/example/helloWorld.class differ