{"id":16347056,"url":"https://github.com/ospoon/publishbintray","last_synced_at":"2026-01-26T04:32:56.004Z","repository":{"id":105557386,"uuid":"64584883","full_name":"OSpoon/PublishBintray","owner":"OSpoon","description":null,"archived":false,"fork":false,"pushed_at":"2016-12-08T10:01:30.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-19T05:05:46.096Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/OSpoon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-07-31T08:41:20.000Z","updated_at":"2016-07-31T08:41:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"52eb0fe4-8648-45ed-9a3b-baf825902667","html_url":"https://github.com/OSpoon/PublishBintray","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/OSpoon/PublishBintray","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OSpoon%2FPublishBintray","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OSpoon%2FPublishBintray/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OSpoon%2FPublishBintray/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OSpoon%2FPublishBintray/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OSpoon","download_url":"https://codeload.github.com/OSpoon/PublishBintray/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OSpoon%2FPublishBintray/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28766886,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T03:54:34.369Z","status":"ssl_error","status_checked_at":"2026-01-26T03:54:33.031Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-11T00:39:25.453Z","updated_at":"2026-01-26T04:32:55.989Z","avatar_url":"https://github.com/OSpoon.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# PublishBintray 使用说明\nBintray ([传送门](https://bintray.com))\n\n- 1.在项目根目录下build.gradle文件中配置插件\n\n        classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'\n    \tclasspath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'\n\n- 2.下载project.properties文件并放到你的library module目录下\n\n\t    #BINTRAY账户信息\n    \tBINTRAY_USER=(非登录用户名)\n    \tBINTRAY_APIKEY=(Bintray官网用户的编辑页面)\n    \tBINTRAY_GPG_PASSWORD=(此处可不填写)\n    \tBINTRAY_REPO = maven(Bintray官网创建名为maven的仓库)\n    \t\n    \t#开发者信息\n    \tDEVELOPER_ID=(开发者ID)\n    \tDEVELOPER_NAME=(开发者姓名)\n    \tDEVELOPER_EMAIL=(开发者邮箱)\n    \t\n    \t#项目信息\n    \tPROJ_GROUP=(项目分组,通常情况下如果你的包名为com.example.test，那么项目组ID就是com.example)\n    \tPROJ_NAME=(项目名称官网创建对应package)\n    \tPROJ_ARTIFACTID=(此ID与Model名字保持一致)\n    \tPROJ_VERSION=1.0.0(版本)\n    \tPROJ_WEBSITEURL=(项版本目网址)\n    \tPROJ_VCSURL=(版本控制地址)\n    \tPROJ_DESCRIPTION= this is android library(描述)\n    \tPROJ_PACKAGING=\"aar\"(此处默认)\n    \t\n    \t#许可信息\n    \tLICENSENAME = 'The Apache Software License, Version 2.0'\n    \tLICENSEURL = 'http://www.apache.org/licenses/LICENSE-2.0.txt'\n    \tALLLICENSES = [\"Apache-2.0\"]\n\n- 3.在MODEL的build.gradle中添加此项目脚本\n\n\t    apply plugin: 'com.android.library'\n    \n    \tandroid {\n    \t\tcompileSdkVersion 23\n    \t\tbuildToolsVersion \"24.0.0\"\n    \t\t\n    \tdefaultConfig {\n\t    \tminSdkVersion 15\n\t    \ttargetSdkVersion 23\n\t    \tversionCode 1\n\t    \tversionName \"1.0\"\n    \t}\n    \tbuildTypes {\n    \t\trelease {\n    \t\t\tminifyEnabled false\n    \t\t\t\tproguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'\n    \t\t\t}\n    \t\t}\n    \t}\n    \t\n    \t//添加插件\n\t\tapply from: 'https://raw.githubusercontent.com/Spoon2014/PublishBintray/master/publishBintray.gradle'\n    \t\n    \tdependencies {\n    \t\tcompile fileTree(dir: 'libs', include: ['*.jar'])\n    \t\ttestCompile 'junit:junit:4.12'\n    \t\tcompile 'com.android.support:appcompat-v7:23.4.0'\n    \t}\n\n\n- 4.编译项目后执行发布命令即可\n- 5.注意:\n- \t    先后执行以下命令,无错误后执行publishing-\u003ebintrayUpload\n    - \tGradle---\u003emodel---\u003eother\n\t    - \t\t\t\t\t\t---\u003einstall\n\t    - \t\t\t\t\t\t---\u003ejavadocJar\n\t    - \t\t\t\t\t\t---\u003esourcesJar\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fospoon%2Fpublishbintray","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fospoon%2Fpublishbintray","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fospoon%2Fpublishbintray/lists"}