Add Java dependency for HtmlDocument module to Gradle

Version 1.6.1 of Dom4J should be the correct version

⚠️ Modules were not tested after upgrade
This commit is contained in:
Tobi Schäfer 2021-04-05 11:03:44 +02:00
parent 9e2bf074b7
commit ed5aac7f66
2 changed files with 9 additions and 0 deletions

View file

@ -0,0 +1,8 @@
dependencies {
runtime 'dom4j:dom4j:1.6.1'
}
task deps(type: Copy) {
from sourceSets.main.runtimeClasspath
into 'lib'
}