commit 43d29f1401d5af6509f911607f03891cf9fa4072 Author: Rainnny7 Date: Fri Apr 5 22:29:30 2024 -0400 Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aa976dc --- /dev/null +++ b/.gitignore @@ -0,0 +1,29 @@ +### Primary template +*.class +*.log +*.ctxt +.mtj.tmp/ +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar +hs_err_pid* +replay_pid* +.idea +cmake-build-*/ +.idea/**/mongoSettings.xml +*.iws +out/ +build/ +work/ +.idea_modules/ +atlassian-ide-plugin.xml +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties +git.properties +pom.xml.versionsBackup diff --git a/README.md b/README.md new file mode 100644 index 0000000..7bd3340 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# RESTfulMC +A simple, yet useful RESTful API for Minecraft! \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..8af1d6f --- /dev/null +++ b/pom.xml @@ -0,0 +1,50 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 3.2.4 + + + + + me.braydon + RESTfulMC + 1.0-dev + + + + 17 + ${java.version} + ${java.version} + UTF-8 + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + + + + org.springframework.boot + spring-boot-starter-web + + + + + org.springframework.boot + spring-boot-starter-test + test + + + \ No newline at end of file