Archived
0

MCSM -> SpacePort

This commit is contained in:
2017-08-13 23:14:14 +03:00
parent f4ee3af979
commit bc2b7032a6
42 changed files with 83 additions and 84 deletions

41
spaceport/build.gradle Normal file
View File

@@ -0,0 +1,41 @@
group = 'asys'
version = '0.10.7-SNAPSHOT'
apply plugin: 'osgi'
configurations {
include
compile.extendsFrom include
}
compileJava {
dependsOn ':libprotocol:compileJava'
}
jar {
manifest {
name = 'ASys MC server manager'
instruction 'Bundle-Activator', 'asys.mcsmanager.Activator'
instruction 'Import-Package',
'!asys.mcsmanager.packets.*',
'io.netty.buffer;version="[4.0,5)"',
'io.netty.handler.codec;version="[4.0,5)"',
'io.netty.handler.codec.http;version="[4.0,5)"',
'*'
}
dependsOn configurations.include
from { configurations.include.collect { it.isDirectory() ? it : zipTree(it) } }
}
ext {
nettyVersion = '4.0.23.Final'
}
dependencies {
compile project(':core')
compile project(':webinterface')
include files(project(':libprotocol').sourceSets.main.output.classesDir)
compile group: 'io.netty', name: 'netty-codec', version: nettyVersion
compile group: 'io.netty', name: 'netty-codec-http', version: nettyVersion
}