plugins { //id 'org.springframework.boot' version '2.0.2.RELEASE' id 'org.springframework.boot' version '2.4.0' } repositories { jcenter() } apply plugin: 'application' mainClassName = "io.github.applecommander.applesingle.tools.asu.Main" bootJar { manifest { attributes( 'Implementation-Title': 'applesingle', 'Implementation-Version': "${project.version} (${new Date().format('yyyy-MM-dd HH:mm')})" ) } } dependencies { implementation 'info.picocli:picocli:3.0.2' implementation project(':applesingle-api') }