diff --git a/.gitignore b/.gitignore index 077c492..393d8fc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,8 @@ #Ignore all vscode files .vscode/* -#Ignore all class files -*.class \ No newline at end of file + +#Ignore build files +.classpath +.project +.settings/ +target/ diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..bc7b8a4 --- /dev/null +++ b/pom.xml @@ -0,0 +1,76 @@ + + + + 4.0.0 + + mattrixwv + myClasses + 1.0-SNAPSHOT + + myClasses + + http://www.example.com + + + UTF-8 + 1.7 + 1.7 + 14 + + + + + junit + junit + 4.11 + test + + + + + + + + + maven-clean-plugin + 3.1.0 + + + + maven-resources-plugin + 3.0.2 + + + maven-compiler-plugin + 3.8.0 + + + maven-surefire-plugin + 2.22.1 + + + maven-jar-plugin + 3.0.2 + + + maven-install-plugin + 2.5.2 + + + maven-deploy-plugin + 2.8.2 + + + + maven-site-plugin + 3.7.1 + + + maven-project-info-reports-plugin + 3.0.0 + + + + + diff --git a/mattrixwv/Algorithms.java b/src/main/java/mattrixwv/Algorithms.java similarity index 99% rename from mattrixwv/Algorithms.java rename to src/main/java/mattrixwv/Algorithms.java index d3100dc..a421086 100644 --- a/mattrixwv/Algorithms.java +++ b/src/main/java/mattrixwv/Algorithms.java @@ -1,7 +1,7 @@ -//Java/JavaClasses/Algorithms.java +//src/main/java/mattrixwv/Algorithms.java //Matthew Ellison // Created: 03-02-19 -//Modified: 03-24-19 +//Modified: 06-07-20 //This class holds many algorithms that I have found it useful to keep around //As such all of the functions in here are static and meant to be used as stand alone functions /* diff --git a/mattrixwv/Stopwatch.java b/src/main/java/mattrixwv/Stopwatch.java similarity index 98% rename from mattrixwv/Stopwatch.java rename to src/main/java/mattrixwv/Stopwatch.java index 47464c9..6c4cfa9 100644 --- a/mattrixwv/Stopwatch.java +++ b/src/main/java/mattrixwv/Stopwatch.java @@ -1,7 +1,7 @@ -//Java/JavaClasses/Mattrixwv/Stopwatch.java +//src/main/java/mattrixwv/Stopwatch.java //Matthew Ellison (Mattrixwv) // Created: 03-01-19 -//Modified: 03-01-19 +//Modified: 06-07-20 //This file contains a class that is used to time the execution time of other programs /* Copyright (C) 2019 Matthew Ellison