From 0cafd3451facb5568559a4f401b385b86c482c2b Mon Sep 17 00:00:00 2001 From: 502647092 Date: Thu, 16 Feb 2017 19:47:20 +0800 Subject: [PATCH] Create & Init Project... --- .gitignore | 37 +++++++++++++++++++++++++++++++++++++ MiaoConfig | 1 + MiaoEventBus | 1 + MiaoPlugin | 1 + MiaoScheduler | 1 + MiaoServer | 1 + pom.xml | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 7 files changed, 91 insertions(+) create mode 100644 .gitignore create mode 160000 MiaoConfig create mode 160000 MiaoEventBus create mode 160000 MiaoPlugin create mode 160000 MiaoScheduler create mode 160000 MiaoServer create mode 100644 pom.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9ea0890 --- /dev/null +++ b/.gitignore @@ -0,0 +1,37 @@ +# Eclipse stuff +/.project +/.classpath +/.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/ + +/plugins +/*.jar \ No newline at end of file diff --git a/MiaoConfig b/MiaoConfig new file mode 160000 index 0000000..3943e03 --- /dev/null +++ b/MiaoConfig @@ -0,0 +1 @@ +Subproject commit 3943e03552e22b48ff3882866c86d9d13342b9d2 diff --git a/MiaoEventBus b/MiaoEventBus new file mode 160000 index 0000000..d90d241 --- /dev/null +++ b/MiaoEventBus @@ -0,0 +1 @@ +Subproject commit d90d241c2b068e9f3f0dfe6fa2334fb209ade81b diff --git a/MiaoPlugin b/MiaoPlugin new file mode 160000 index 0000000..706fa09 --- /dev/null +++ b/MiaoPlugin @@ -0,0 +1 @@ +Subproject commit 706fa0943af9d8459f26fb733ba14886662dba9f diff --git a/MiaoScheduler b/MiaoScheduler new file mode 160000 index 0000000..41e9954 --- /dev/null +++ b/MiaoScheduler @@ -0,0 +1 @@ +Subproject commit 41e99543b8860b96c4a8cc056f6635ad5dc6e803 diff --git a/MiaoServer b/MiaoServer new file mode 160000 index 0000000..5cffba3 --- /dev/null +++ b/MiaoServer @@ -0,0 +1 @@ +Subproject commit 5cffba3fcd776cf0fbdd3620161345740888aa8b diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..29f2616 --- /dev/null +++ b/pom.xml @@ -0,0 +1,49 @@ + + + 4.0.0 + pw.yumc + MiaoServerParent + pom + 1.0-SNAPSHOT + + MiaoEventBus + MiaoConfig + MiaoScheduler + MiaoPlugin + MiaoServer + + + + org.yaml + snakeyaml + 1.16 + + + com.google.guava + guava + 19.0 + + + junit + junit + 4.12 + + + commons-lang + commons-lang + 2.6 + + + jline + jline + 2.12 + + + org.fusesource.jansi + jansi + 1.11 + + + \ No newline at end of file