diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..80ab21c05 --- /dev/null +++ b/.gitignore @@ -0,0 +1,29 @@ +*.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/ +target/ +.idea_modules/ +atlassian-ide-plugin.xml +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties +git.properties +pom.xml.versionsBackup \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 000000000..08204cd66 --- /dev/null +++ b/pom.xml @@ -0,0 +1,67 @@ + + + 4.0.0 + + + me.braydon + PIA-ServerList + 1.0 + + + + 17 + ${java.version} + ${java.version} + UTF-8 + + + + ${project.artifactId} + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.13.0 + + ${java.version} + ${java.version} + + + + false + + + + + + org.apache.maven.plugins + maven-shade-plugin + 3.5.3 + + false + + + + package + + shade + + + + + + + + + + + org.projectlombok + lombok + 1.18.32 + provided + + + \ No newline at end of file diff --git a/src/main/java/me/braydon/pia/PIAServerList.java b/src/main/java/me/braydon/pia/PIAServerList.java new file mode 100644 index 000000000..d8d3be352 --- /dev/null +++ b/src/main/java/me/braydon/pia/PIAServerList.java @@ -0,0 +1,12 @@ +package me.braydon.pia; + +import lombok.NonNull; + +/** + * @author Braydon + */ +public final class PIAServerList { + public static void main(@NonNull String[] args) { + System.out.println("Hello World!"); + } +} \ No newline at end of file