plugins { id 'java' id 'distribution' id 'maven-publish' id 'com.jfrog.bintray' } group 'info.picocli' description 'Picocli Spring Boot Starter - Enables Spring Dependency Injection and Spring Boot AutoConfiguration in Picocli Commands.' version "$projectVersion" sourceCompatibility = 1.8 targetCompatibility = 1.8 repositories { mavenCentral() } dependencies { api rootProject api "org.springframework.boot:spring-boot-starter:$springBootVersion" annotationProcessor "org.springframework.boot:spring-boot-configuration-processor:$springBootVersion" } jar { manifest { attributes 'Specification-Title' : 'Picocli Spring Boot Starter', 'Specification-Vendor' : 'Remko Popma', 'Specification-Version' : archiveVersion, 'Implementation-Title' : 'Picocli Spring Boot Starter', 'Implementation-Vendor' : 'Remko Popma', 'Implementation-Version': archiveVersion, 'Automatic-Module-Name' : 'info.picocli.spring' } } ext { bintrayPackage = 'picocli-spring-boot-starter' bintrayWebsiteUrl = 'https://github.com/remkop/picocli/tree/master/picocli-spring-boot-starter' bintrayLabels = ['cli', 'commandline', 'picocli', 'spring', 'boot', 'starter'] } bintray { user = bintrayUsername key = bintrayApiKey publications = ['MyPublication'] dryRun = bintrayDryRun //[Default: false] Whether to run this as dry-run, without deploying publish = bintrayPublish //[Default: false] Whether version should be auto published after an upload override = bintrayOverride //[Default: false] Whether to override version artifacts already published //Package configuration. The plugin will use the repo and name properties to check if the package already exists. In that case, there's no need to configure the other package properties (like userOrg, desc, etc). pkg { repo = 'picocli' name = bintrayPackage userOrg = 'remkop' licenses = ['Apache-2.0'] desc = description websiteUrl = bintrayWebsiteUrl issueTrackerUrl = 'https://github.com/remkop/picocli/issues' vcsUrl = 'https://github.com/remkop/picocli.git' labels = bintrayLabels publicDownloadNumbers = false version { name = "$projectVersion" desc = description released = new Date() vcsTag = "v$projectVersion" mavenCentralSync { sync = mavenOssSync //[Default: true] Determines whether to sync the version to Maven Central. user = mavenOssUser //OSS user token: mandatory password = mavenOssPassword //OSS user password: mandatory close = '1' //Optional property. By default the staging repository is closed and artifacts are released to Maven Central. You can optionally turn this behaviour off (by puting 0 as value) and release the version manually. } } } } publishing { publications { MyPublication(MavenPublication) { from components.java artifact sourcesJar artifact testJar artifact testSourcesJar artifact javadocJar groupId 'info.picocli' artifactId bintrayPackage version "$projectVersion" pom.withXml { def root = asNode() root.appendNode('packaging', 'jar') root.appendNode('name', bintrayPackage) root.appendNode('description', description) root.appendNode('url', 'http://picocli.info') root.appendNode('inceptionYear', '2019') root.children().last() + pomConfig } } } }