37 lines
902 B
Groovy
37 lines
902 B
Groovy
apply plugin: 'java'
|
|
repositories{
|
|
mavenCentral()
|
|
}
|
|
|
|
sourceCompatibility = 1.6
|
|
jar {
|
|
manifest {
|
|
attributes("Implementation-Title": "Writer2xhtml",
|
|
"Implementation-Version": "0.1.2",
|
|
"Main-Class" : "writer2latex.Application",
|
|
"Class-Path" : "jasp.jar parser.jar")
|
|
}
|
|
}
|
|
configurations{
|
|
bundledLibs
|
|
}
|
|
dependencies{
|
|
bundledLibs 'org.libreoffice:jurt:5.3.2'
|
|
bundledLibs 'org.libreoffice:juh:5.3.2'
|
|
bundledLibs 'org.libreoffice:ridl:5.3.2'
|
|
bundledLibs 'org.libreoffice:unoil:5.3.2'
|
|
bundledLibs 'org.jbibtex:jbibtex:1.0.15'
|
|
bundledLibs 'org.json:json:20140107'
|
|
bundledLibs 'junit:junit:4.12'
|
|
bundledLibs files('idl')
|
|
configurations.compile.extendsFrom(configurations.bundledLibs)
|
|
}
|
|
jar {
|
|
from {
|
|
configurations.bundledLibs.collect { it.isDirectory() ? it : zipTree(it) }
|
|
}
|
|
from('src/main/java') {
|
|
include '**/*.properties'
|
|
}
|
|
}
|
|
|