plugins { id "java" id "application" } java { sourceCompatibility = JavaVersion.VERSION_11 } mainClassName = "org.unitConverter.converterGUI.UnitConverterGUI" repositories { mavenCentral() } dependencies { testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0' testImplementation 'org.junit.jupiter:junit-jupiter-params:5.7.0' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0' } test { useJUnitPlatform() testLogging { events 'passed', 'skipped', 'failed' } } run { }