mirror of
https://e.coding.net/circlecloud/MiaoServerParent.git
synced 2024-12-04 17:48:46 +00:00
Create & Init Project...
This commit is contained in:
commit
0cafd3451f
37
.gitignore
vendored
Normal file
37
.gitignore
vendored
Normal file
@ -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
|
1
MiaoConfig
Submodule
1
MiaoConfig
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 3943e03552e22b48ff3882866c86d9d13342b9d2
|
1
MiaoEventBus
Submodule
1
MiaoEventBus
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit d90d241c2b068e9f3f0dfe6fa2334fb209ade81b
|
1
MiaoPlugin
Submodule
1
MiaoPlugin
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 706fa0943af9d8459f26fb733ba14886662dba9f
|
1
MiaoScheduler
Submodule
1
MiaoScheduler
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 41e99543b8860b96c4a8cc056f6635ad5dc6e803
|
1
MiaoServer
Submodule
1
MiaoServer
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 5cffba3fcd776cf0fbdd3620161345740888aa8b
|
49
pom.xml
Normal file
49
pom.xml
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>pw.yumc</groupId>
|
||||||
|
<artifactId>MiaoServerParent</artifactId>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
<modules>
|
||||||
|
<module>MiaoEventBus</module>
|
||||||
|
<module>MiaoConfig</module>
|
||||||
|
<module>MiaoScheduler</module>
|
||||||
|
<module>MiaoPlugin</module>
|
||||||
|
<module>MiaoServer</module>
|
||||||
|
</modules>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.yaml</groupId>
|
||||||
|
<artifactId>snakeyaml</artifactId>
|
||||||
|
<version>1.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.google.guava</groupId>
|
||||||
|
<artifactId>guava</artifactId>
|
||||||
|
<version>19.0</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>junit</groupId>
|
||||||
|
<artifactId>junit</artifactId>
|
||||||
|
<version>4.12</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>commons-lang</groupId>
|
||||||
|
<artifactId>commons-lang</artifactId>
|
||||||
|
<version>2.6</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>jline</groupId>
|
||||||
|
<artifactId>jline</artifactId>
|
||||||
|
<version>2.12</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.fusesource.jansi</groupId>
|
||||||
|
<artifactId>jansi</artifactId>
|
||||||
|
<version>1.11</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</project>
|
Loading…
Reference in New Issue
Block a user