From d0549f769450479ead8cd41f7305ba1b53b8732d Mon Sep 17 00:00:00 2001 From: 502647092 Date: Fri, 5 Oct 2018 23:48:29 +0800 Subject: [PATCH] Create & Init Project... --- .gitignore | 38 ++++++++++++++++++++++++ pom.xml | 87 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 125 insertions(+) create mode 100644 .gitignore create mode 100644 pom.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7876f5f --- /dev/null +++ b/.gitignore @@ -0,0 +1,38 @@ +# Eclipse stuff +/.settings + +# netbeans +/nbproject + +# we use maven! +/build.xml + +# maven +/target +/repo + +# vim +.*.sw[a-p] + +# various other potential build files +/build +/bin +/dist +/manifest.mf + +/world + +# Mac filesystem dust +*.DS_Store + +# intellij +*.iml +*.ipr +*.iws +.idea/ + +# Project Stuff +/src/main/resources/Soulbound + +# Atlassian Stuff +/atlassian-ide-plugin.xml \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..cef8564 --- /dev/null +++ b/pom.xml @@ -0,0 +1,87 @@ + + 4.0.0 + pw.yumc + minecraft-plugin-parent + 1.0 + Minecraft 服务器插件父项目 + pom + + YUMC + http://www.yumc.pw + + + + MiaoWoo + https://blog.yumc.pw + admin@yumc.pw + Asia/Shanghai + + + + Jenkins + http://ci.yumc.pw/job/${project.artifactId}/ + + + + yumc-repo + https://repo.yumc.pw/repository/maven-public/ + + + + + yumc-repo + https://repo.yumc.pw/repository/maven-public/ + + + + + jtb + YUMC + https://repo.yumc.pw/repository/yumcenter/ + + + + + pw.yumc + YumCore + jar + [1.8.8,) + + + + + + ${project.artifactId} + + + src/main/resources + true + + + + + + org.apache.maven.plugins + maven-shade-plugin + 3.2.0 + + false + true + + + pw.yumc:YumCore + + + + + pw.yumc.YumCore + ${project.groupId}.${project.artifactId} + + + + + + + + \ No newline at end of file