apply plugin: 'java' apply plugin: 'application' repositories { jcenter() } dependencies { testCompile 'junit:junit:4.12' } mainClassName = 'com.webcodepro.shrinkit.NufxScan' jar { manifest { attributes( 'Main-Class': mainClassName ) } }