helma/modules/jala/build.gradle

22 lines
542 B
Groovy
Raw Normal View History

dependencies {
runtimeOnly 'dom4j:dom4j:1.1.3'
2021-04-18 19:45:34 +02:00
runtimeOnly 'jaxen:jaxen:1.1-beta-8'
runtimeOnly 'net.sf.javamusictag:jid3lib:0.5.4'
2021-04-05 11:25:48 +02:00
// FIXME: Did not find these two or appropriate replacements for them
//runtime 'id3:de.ueberdosis.mp3info:1.6.0d9'
//runtime 'javadns:org.wonderly:?'
}
2024-05-18 15:30:08 +02:00
jar.enabled = false
compileJava.enabled = false
compileTestJava.enabled = false
processResources.enabled = false
processTestResources.enabled = false
test.enabled = false
task deps(type: Copy) {
from sourceSets.main.runtimeClasspath
into 'lib'
}