Archived
0
This repository has been archived on 2022-04-17. You can view files and clone it, but cannot push or open issues or pull requests.
Files
asys/mcserver-manager/build.gradle
DmitriyMX e1dd09126b MCSM/Bridge: downgrade Netty из-за Minecraft
они используют версию библиотеки ниже, чем я
2017-04-27 15:54:48 +03:00

31 lines
668 B
Groovy

group = 'asys'
version = '0.6-SNAPSHOT'
apply plugin: 'osgi'
configurations {
include
compile.extendsFrom include
}
jar {
manifest {
name = 'ASys MC server manager'
instruction 'Bundle-Activator', 'asys.mcsmanager.Activator'
}
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(':bridge-protocol').sourceSets.main.output.classesDir)
compile group: 'io.netty', name: 'netty-codec', version: nettyVersion
}