build.gradle 734 B

12345678910111213141516171819202122232425262728
  1. plugins {
  2. id 'java'
  3. }
  4. group = 'holeg'
  5. version = '2.2.0'
  6. description = 'HOLEG'
  7. sourceSets.main.java.srcDirs = ['src']
  8. sourceSets.test.java.srcDirs = ['tests']
  9. repositories {
  10. mavenCentral()
  11. }
  12. dependencies {
  13. implementation 'com.google.code.gson:gson:2.8.9'
  14. implementation 'org.apache.commons:commons-email:1.5'
  15. implementation 'org.wso2.orbit.org.apache.commons:commons-compress:1.18.0.wso2v1'
  16. implementation 'org.knowm.xchart:xchart:3.8.1'
  17. implementation 'com.miglayout:miglayout-swing:5.0'
  18. testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.2'
  19. testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.7.2'
  20. }
  21. test {
  22. useJUnitPlatform()
  23. testLogging.showStandardStreams = true
  24. }