Всё есть bundles
Всё же лучше вернуться к изначальной идее, когда модули и юиюлиотеки подгружаются как bundles, т.к. на данном этапе ясно, что разные модули могут использовать одни и теже бибилиотеки.
This commit is contained in:
@@ -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'
|
||||
}
|
||||
Reference in New Issue
Block a user