Proceeded configure gradle
This commit is contained in:
parent
d0fc62a976
commit
5f8d6bd28a
1 changed files with 20 additions and 9 deletions
29
build.gradle
29
build.gradle
|
@ -12,15 +12,26 @@ jar {
|
||||||
"Class-Path" : "jasp.jar parser.jar")
|
"Class-Path" : "jasp.jar parser.jar")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
configurations{
|
||||||
|
bundledLibs
|
||||||
|
}
|
||||||
dependencies{
|
dependencies{
|
||||||
compile 'org.libreoffice:jurt:5.3.2'
|
bundledLibs 'org.libreoffice:jurt:5.3.2'
|
||||||
compile 'org.libreoffice:juh:5.3.2'
|
bundledLibs 'org.libreoffice:juh:5.3.2'
|
||||||
compile 'org.libreoffice:ridl:5.3.2'
|
bundledLibs 'org.libreoffice:ridl:5.3.2'
|
||||||
compile 'org.libreoffice:unoil:5.3.2'
|
bundledLibs 'org.libreoffice:unoil:5.3.2'
|
||||||
compile 'org.jbibtex:jbibtex:1.0.15'
|
bundledLibs 'org.jbibtex:jbibtex:1.0.15'
|
||||||
compile 'org.json:json:20140107'
|
bundledLibs 'org.json:json:20140107'
|
||||||
compile 'junit:junit:4.12'
|
bundledLibs 'junit:junit:4.12'
|
||||||
compile files('idl')
|
bundledLibs files('idl')
|
||||||
|
configurations.compile.extendsFrom(configurations.bundledLibs)
|
||||||
|
}
|
||||||
|
jar {
|
||||||
|
from {
|
||||||
|
configurations.bundledLibs.collect { it.isDirectory() ? it : zipTree(it) }
|
||||||
|
}
|
||||||
|
from('src/main/java') {
|
||||||
|
include '**/*.properties'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue