build.gradle 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. plugins {
  2. id 'application'
  3. }
  4. repositories {
  5. mavenCentral()
  6. }
  7. dependencies {
  8. implementation 'commons-net:commons-net:3.8.0'
  9. implementation 'com.googlecode.json-simple:json-simple:1.1.1'
  10. implementation 'org.slf4j:slf4j-api:1.7.30'
  11. implementation 'org.slf4j:slf4j-simple:1.7.30'
  12. implementation 'com.drewnoakes:metadata-extractor:2.15.0'
  13. implementation 'org.apache.xmlgraphics:batik-all:1.14'
  14. implementation 'com.twelvemonkeys.imageio:imageio-bmp:3.7.0'
  15. implementation 'com.twelvemonkeys.imageio:imageio-batik:3.7.0'
  16. implementation 'com.twelvemonkeys.imageio:imageio-webp:3.7.0'
  17. implementation 'com.twelvemonkeys.imageio:imageio-tiff:3.7.0'
  18. implementation 'com.twelvemonkeys.imageio:imageio-icns:3.7.0'
  19. implementation 'com.twelvemonkeys.imageio:imageio-jpeg:3.7.0'
  20. implementation 'com.github.lgooddatepicker:LGoodDatePicker:11.2.1'
  21. implementation 'org.jxmapviewer:jxmapviewer2:2.6'
  22. implementation 'org.apache.tika:tika-core:2.1.0'
  23. // Needed to fix Batik interfering by having the javax.xml package
  24. configurations {
  25. all*.exclude group: 'xml-apis', module: 'xml-apis'
  26. }
  27. }
  28. application {
  29. mainClass = 'zander.Start'
  30. }
  31. jar {
  32. manifest {
  33. attributes 'Main-Class': 'zander.Start'
  34. }
  35. }