buildscript { repositories { jcenter() } dependencies { classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4' } } apply plugin: "idea" apply plugin: "java" apply plugin: "groovy" apply plugin: 'maven' apply plugin: 'maven-publish' apply plugin: 'com.jfrog.bintray' repositories { mavenCentral() } dependencies { implementation("org.slf4j:slf4j-api:${slf4jVersion}") //implementation("org.slf4j:slf4j-simple:${slf4jVersion}") implementation('com.google.code.gson:gson:2.8.5') implementation("com.squareup.okhttp3:okhttp:4.1.0") testCompile("org.codehaus.groovy:groovy-all:${groovyVersion}") testCompile("org.spockframework:spock-core:${spockVersion}") { exclude group: "org.codehaus.groovy" } testCompile( 'com.athaydes:spock-reports:1.6.2' ) { transitive = false // this avoids affecting your version of Groovy/Spock } } publishing { publications { mavenJava(MavenPublication) { from components.java } } repositories { mavenLocal() } } bintray { user = System.getenv('BINTRAY_USER') key = System.getenv('BINTRAY_KEY') configurations = ['archives'] pkg { repo = "libs" name = id websiteUrl = siteUrl vcsUrl = gitUrl licenses = licenses publish = true } }