Archived
0

Всё есть bundles

Всё же лучше вернуться к изначальной идее, когда модули и
юиюлиотеки подгружаются как bundles, т.к. на данном этапе
ясно, что разные модули могут использовать одни и теже
бибилиотеки.
This commit is contained in:
2017-04-27 05:48:00 +03:00
parent 2117b440ff
commit 8b725d0f69
4 changed files with 16 additions and 29 deletions

View File

@@ -1,5 +1,5 @@
group = 'asys'
version = '0.16-SNAPSHOT'
version = '0.17-SNAPSHOT'
buildscript {
repositories {
@@ -12,16 +12,6 @@ buildscript {
apply plugin: 'org.dm.bundle'
configurations {
included
compile.extendsFrom included
}
jar {
dependsOn configurations.included
from { configurations.included.collect { it.isDirectory() ? it : zipTree(it).matching{exclude{it.path.contains('META-INF')} } } }
}
bundle {
instructions << [
'Bundle-Name': 'ASys Web interface',
@@ -35,6 +25,6 @@ bundle {
dependencies {
compile project(':core')
included group: 'com.google.code.gson', name: 'gson', version: '2.7'
included group: 'commons-io', name: 'commons-io', version: '2.5'
compile group: 'com.google.code.gson', name: 'gson', version: '2.7'
compile group: 'commons-io', name: 'commons-io', version: '2.5'
}