plugins { id 'java' } repositories { mavenCentral() } dependencies { testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2' testImplementation 'org.junit.jupiter:junit-jupiter-params:5.6.2' testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.6.2' } group = 'com.gildedrose' version = '0.0.1-SNAPSHOT' sourceCompatibility = '1.8' test { useJUnitPlatform() }