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 8b725d0f69 Всё есть bundles
Всё же лучше вернуться к изначальной идее, когда модули и
юиюлиотеки подгружаются как bundles, т.к. на данном этапе
ясно, что разные модули могут использовать одни и теже
бибилиотеки.
2017-04-27 05:48:00 +03:00

22 lines
400 B
Groovy

group = 'asys'
version = '0.5-SNAPSHOT'
apply plugin: 'osgi'
jar {
manifest {
name = 'ASys MC server manager'
instruction 'Bundle-Activator', 'asys.mcsmanager.Activator'
}
}
ext {
nettyVersion = '4.1.9.Final'
}
dependencies {
compile project(':core')
compile project(':webinterface')
compile group: 'io.netty', name: 'netty-codec', version: nettyVersion
}