plugins { id 'java' id 'application' id 'eclipse' } group 'org.example' version '1.0-SNAPSHOT' repositories { mavenCentral() } dependencies { testCompile group: 'junit', name: 'junit', version: '4.12' } tasks.withType(JavaCompile) { options.encoding = 'UTF-8' }