problem about bintray-Collection of common programming errors
MariuszS
gradle release publish pom.xml bintray
I have configured Gradle to publish project artifact using new Maven Publisher Plugin, unfortunately this plugin has problem with dependency in generated pom.xml – dependencies has scope runtime instead of compile.My configuration is like this:apply plugin: ‘maven-publish’publishing {publications {mavenCustom(MavenPublication) {from components.java}}repositories {maven {url “https://api.bintray.com/maven/codearte/public/fairyland”credentials {username = bintrayUserpassword = bintrayKey}}} }Publi
Web site is in building