java - Bintray gradle plugin not uploading artifacts -
i using bintray gradle plugin upload java artifact on bintray. have written code example, creates package , version there not files in files directory. missing here??
bintray { user = 'user name' key = 'my key' pkg { repo = 'androids' name = 'name' licenses = ['apache-2.0'] vcsurl = 'https://github.com/bintray/gradle-bintray-plugin.git' version { name = 'version' desc = 'gradle bintray plugin 1.0 final' released = new date() vcstag = '1.3.0' attributes = ['gradle-plugin': 'com.use.less:com.use.less.gradle:gradle-useless-plugin'] } filesspec { 'build/libs' 'standalone_files/level1' } } }
i running task root project build directory not defined. when ran in module (build/libs) contains required artifacts.
Comments
Post a Comment