/* * 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.10.0' } // Use JUnit Jupiter for testing. testImplementation 'org.junit.jupiter:junit-jupiter:5.9.3' } tasks.named('test') { // Use JUnit Platform for unit tests. useJUnitPlatform() }