Archived
0

Web interface

This commit is contained in:
2017-03-07 01:19:40 +03:00
parent 4b47b63171
commit 003f90160b
9 changed files with 365 additions and 1 deletions

37
webinterface/build.gradle Normal file
View File

@@ -0,0 +1,37 @@
group = 'asys'
version = '0.8-SNAPSHOT'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.dm.gradle:gradle-bundle-plugin:0.10.0"
}
}
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',
'Bundle-Activator': 'asys.webinterface.Activator',
'Import-Package': '*'
]
exclude group: 'com.google.code.gson'
}
dependencies {
compile project(':core')
included group: 'com.google.code.gson', name: 'gson', version: '2.7'
}