commit 6bce82dd5ccb1a43882b4951f543723d0434799f Author: Nekojimi Date: Mon Jun 20 11:11:33 2022 +0100 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ce805e5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,48 @@ +# ---> Java +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* + +# ---> 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 +# https://github.com/takari/maven-wrapper#usage-without-binary-jar +.mvn/wrapper/maven-wrapper.jar + +# ---> NetBeans +**/nbproject/private/ +**/nbproject/Makefile-*.mk +**/nbproject/Package-*.bash +build/ +nbbuild/ +dist/ +nbdist/ +.nb-gradle/ + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..7a3094a --- /dev/null +++ b/LICENSE @@ -0,0 +1,11 @@ +DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE +Version 2, December 2004 + +Copyright (C) 2004 Sam Hocevar + +Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed. + +DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. diff --git a/README.md b/README.md new file mode 100644 index 0000000..d8785b4 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# JavaMavenTemplate + diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..c860b82 --- /dev/null +++ b/pom.xml @@ -0,0 +1,38 @@ + + + 4.0.0 + moe.${REPO_OWNER_LOWER} + ${REPO_NAME_PASCAL} + 1.0-SNAPSHOT + jar + + UTF-8 + 11 + 11 + + + + + org.apache.maven.plugins + maven-shade-plugin + 3.2.4 + + + package + + shade + + + + + moe.${REPO_OWNER_LOWER}.${REPO_NAME_LOWER}.Main + + + true + + + + + + + \ No newline at end of file diff --git a/src/main/java/moe/nekojimi/javamaventemplate/Main.java b/src/main/java/moe/nekojimi/javamaventemplate/Main.java new file mode 100644 index 0000000..98c1e6f --- /dev/null +++ b/src/main/java/moe/nekojimi/javamaventemplate/Main.java @@ -0,0 +1,16 @@ +package moe.${REPO_OWNER_LOWER}.${REPO_NAME_LOWER}; + +/** + * + * @author ${REPO_OWNER_LOWER} + */ +public class Main +{ + /** + * @param args the command line arguments + */ + public static void main(String[] args) + { + System.out.println("Hello world!"); + } +}