plugins { id 'java' } group = 'holeg' version = '2.2.0' description = 'HOLEG' sourceSets.main.java.srcDirs = ['src'] sourceSets.test.java.srcDirs = ['tests'] repositories { mavenCentral() } dependencies { implementation 'com.google.code.gson:gson:2.8.9' implementation 'org.apache.commons:commons-email:1.5' implementation 'org.wso2.orbit.org.apache.commons:commons-compress:1.18.0.wso2v1' implementation 'org.knowm.xchart:xchart:3.8.1' implementation 'com.miglayout:miglayout-swing:5.0' testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.2' testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.7.2' } test { useJUnitPlatform() testLogging.showStandardStreams = true }