Bridge: первая реализация
This commit is contained in:
28
bridge/build.gradle
Normal file
28
bridge/build.gradle
Normal file
@@ -0,0 +1,28 @@
|
||||
group = 'asys'
|
||||
version = '0.1-SNAPSHOT'
|
||||
|
||||
repositories {
|
||||
maven { url 'https://hub.spigotmc.org/nexus/content/groups/public/' }
|
||||
}
|
||||
|
||||
configurations {
|
||||
include
|
||||
compile.extendsFrom include
|
||||
}
|
||||
|
||||
jar {
|
||||
dependsOn configurations.include
|
||||
from { configurations.include.collect { it.isDirectory() ? it : zipTree(it) } }
|
||||
}
|
||||
|
||||
ext {
|
||||
nettyVersion = '4.0.23.Final'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
include files(project(':bridge-protocol').sourceSets.main.output.classesDir)
|
||||
compile (group: 'org.bukkit', name: 'bukkit', version: '1.8.8-R0.1-SNAPSHOT') {
|
||||
exclude group: 'junit'
|
||||
}
|
||||
compile group: 'io.netty', name: 'netty-codec', version: nettyVersion
|
||||
}
|
||||
Reference in New Issue
Block a user