/* * This file was generated by the Gradle 'init' task. */ plugins { // Apply the java Plugin to add support for Java. id 'java' } repositories { // Use Maven Central for resolving dependencies. mavenCentral() } dependencies { constraints { // Define dependency versions as constraints implementation 'org.apache.commons:commons-text:1.9' } // Use JUnit Jupiter API for testing. testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.1' // Use JUnit Jupiter Engine for testing. testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine' } tasks.named('test') { // Use junit platform for unit tests. useJUnitPlatform() }