Merge dynmap-api into common dynmap
This commit is contained in:
parent
e4d0261a07
commit
acfecce539
18 changed files with 260 additions and 53 deletions
18
bukkit/.classpath
Normal file
18
bukkit/.classpath
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" output="bin/main" path="src/main/java">
|
||||
<attributes>
|
||||
<attribute name="gradle_scope" value="main"/>
|
||||
<attribute name="gradle_used_by_scope" value="main,test"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="src" output="bin/main" path="src/main/resources">
|
||||
<attributes>
|
||||
<attribute name="gradle_scope" value="main"/>
|
||||
<attribute name="gradle_used_by_scope" value="main,test"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
|
||||
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
|
||||
<classpathentry kind="output" path="bin/default"/>
|
||||
</classpath>
|
||||
23
bukkit/.project
Normal file
23
bukkit/.project
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>dynmap</name>
|
||||
<comment>Project dynmap created by Buildship.</comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
||||
2
bukkit/.settings/org.eclipse.buildship.core.prefs
Normal file
2
bukkit/.settings/org.eclipse.buildship.core.prefs
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
connection.project.dir=..
|
||||
eclipse.preferences.version=1
|
||||
|
|
@ -4,7 +4,7 @@ description = 'dynmap'
|
|||
dependencies {
|
||||
compile group: 'org.bukkit', name: 'bukkit', version:'1.7.10-R0.1-SNAPSHOT'
|
||||
compile 'com.nijikokun.bukkit:Permissions:3.1.6'
|
||||
compile "us.dynmap:dynmap-api:${project.version}"
|
||||
compile project(":dynmap-api")
|
||||
compile "us.dynmap:DynmapCore:${project.version}"
|
||||
compile group: 'ru.tehkode', name: 'PermissionsEx', version:'1.19.1'
|
||||
compile group: 'de.bananaco', name: 'bPermissions', version:'2.9.1'
|
||||
|
|
@ -38,7 +38,7 @@ jar {
|
|||
shadowJar {
|
||||
dependencies {
|
||||
include(dependency('org.bstats::'))
|
||||
include(dependency('us.dynmap:dynmap-api:'))
|
||||
include(dependency(':dynmap-api'))
|
||||
include(dependency('us.dynmap:DynmapCore:'))
|
||||
include(dependency(':bukkit-helper'))
|
||||
include(dependency(':bukkit-helper-113'))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue