plugins { id 'java' id 'application' } group 'io.resttestgen' version '23.01' mainClassName = 'io.resttestgen.core.cli.App' repositories { mavenCentral() } dependencies { implementation 'org.apache.logging.log4j:log4j-core:2.19.0' implementation 'com.google.code.gson:gson:2.10' implementation 'com.google.guava:guava:31.1-jre' implementation 'org.jgrapht:jgrapht-core:1.5.1' implementation 'org.jgrapht:jgrapht-io:1.5.1' implementation 'com.squareup.okhttp3:okhttp:4.10.0' implementation 'org.apache.opennlp:opennlp-tools:1.9.4' implementation 'com.jayway.jsonpath:json-path:2.7.0' implementation 'org.iban4j:iban4j:3.2.3-RELEASE' implementation 'nz.ac.waikato.cms.weka:weka-stable:3.8.6' testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0' } test { useJUnitPlatform() } jar { manifest { attributes 'Main-Class': 'io.resttestgen.core.cli.App' } }