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

Popular posts from this blog

java - Jasper subreport showing only one entry from the JSON data source when embedded in the Title band -

mapreduce - Resource manager does not transit to active state from standby -

serialization - Convert Any type in scala to Array[Byte] and back -