helma/modules/jala/build.gradle
Tobi Schäfer e8d9f05b72 Add Java dependency for MP3 module to Gradle
Version 0.5.4 of jid3lib should be the correct version

⚠️ Modules were not tested after upgrade
2021-04-05 11:22:09 +02:00

12 lines
286 B
Groovy

dependencies {
runtime 'dom4j:dom4j:1.6.1'
//runtime 'id3:de.ueberdosis.mp3info:1.6.0d9'
//runtime 'javadns:org.wonderly:?'
runtime 'jaxen:jaxen:1.1-beta-8'
runtime 'net.sf.javamusictag:jid3lib:0.5.4'
}
task deps(type: Copy) {
from sourceSets.main.runtimeClasspath
into 'lib'
}