参考官方文档 上传gradle项目到jcenter中央仓库

https://plugins.gradle.org/docs/publish-plugin

gradle.publish.key=xxx
gradle.publish.secret=xxx

https://plugins.gradle.org/u/qssq666?tab=publishing

将以下内容复制到HOME_DIR/.gradle/gradle.properties (~/.gradle/gradle.properties)文件中:

image.png

image.png

xxxxxxxxxxxxxxxx
如何将插件添加到插件门户?
注意:如果您以前通过Bintray发布了Gradle插件,请阅读此信息。
步骤1:创建一个帐户。
看起来你已经创建了一个帐户!
步骤2:创建一个API密钥。
访问您的 个人资料页面 ,通过“API密钥”选项卡获取您的API密钥。
您可以使用相同的API密钥来发布尽可能多的插件。
步骤3:将您的API密钥添加到您的Gradle配置。
创建API密钥后, 您的个人资料页面 的“API密钥”选项卡 将提供可以复制并粘贴到Gradle用户属性文件中的代码段。
对于摇篮用户属性文件的默认位置是 $USER_HOME/.gradle/gradle.properties,这里$USER_HOME指的是用户主目录。
还有一个实验任务“登录”,这是插件发布插件的一部分,它自动执行此步骤。您需要遵循参考文档 来了解如何配置此插件。
步骤4:使用插件发布插件。
插件发布插件提供将插件上传到插件门户的任务。它也可以用于在将来发布插件的更新版本。
该插件允许您指定插件的ID,描述,标签和其他信息。该信息也可以在插件发布后稍后进行编辑。
请参阅该插件参考文档了解如何配置和使用这个插件。
步骤5:你完成了
您的插件现在是Gradle插件门户的一部分,可以由世界各地的Gradle用户使用。
谢谢你的贡献。
如何使用插件发布插件?
将Gradle插件发布到插件门户的能力由Gradle“插件发布”插件提供。这个插件不是Gradle发行版的一部分,但是可以从插件门户中获得。
配置完成后,只需运行publishPlugins 插件的构建任务即可发布插件。
在使用插件之前, 请遵循提交说明,以便对Gradle环境进行必要的一次性配置。

build.gradle (Simple Example)

下面开始了

// 首先应用插件  First, apply the publishing plugin
buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.gradle.publish:plugin-publish-plugin:0.9.7"
  }
}
···


apply plugin: "com.gradle.plugin-publish"
// Apply other plugins here, e.g. java plugin for a plugin written in java or
// the groovy plugin for a plugin written in groovy

// If your plugin has any external java dependencies, Gradle will attempt to
// downloaded them from JCenter for anyone using the plugins DSL
// so you should probably use JCenter for dependency resolution in your own
// project.
repositories {
  jcenter()
}

dependencies {
  compile gradleApi()
  compile localGroovy() //not needed for Java plugins
  // other dependencies that your plugin requires
}

// Unless overridden in the pluginBundle config DSL, the project version will
// be used as your plugin version when publishing
version = "1.2"
group = "com.foo.myplugin"

// The configuration example below shows the minimum required properties
// configured to publish your plugin to the plugin portal
pluginBundle {
  website = 'http://www.gradle.org/'
  vcsUrl = 'https://github.com/gradle/gradle'
  description = 'Greetings from here!'
  tags = ['greetings', 'salutations']

  plugins {
    greetingsPlugin {
      id = 'org.samples.greeting'
      displayName = 'Gradle Greeting plugin'
    }
  }
}

完整演示

// First, apply the publishing plugin
buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.gradle.publish:plugin-publish-plugin:0.9.7"
  }
}

apply plugin: "com.gradle.plugin-publish"
// Apply other plugins here, e.g. java plugin for a plugin written in java or
// the groovy plugin for a plugin written in groovy

// If your plugin has any external java dependencies, Gradle will attempt to
// downloaded them from JCenter for anyone using the plugins DSL
// so you should probably use JCenter for dependency resolution in your own
// project.
repositories {
  jcenter()
}

dependencies {
  compile gradleApi()
  compile localGroovy() //not needed for Java plugins
  // other dependencies that your plugin requires
}

pluginBundle {
  // These settings are set for the whole plugin bundle
  website = 'http://www.gradle.org/'
  vcsUrl = 'https://github.com/gradle/gradle'

  // tags and description can be set for the whole bundle here, but can also
  // be set / overridden in the config for specific plugins
  description = 'Greetings from here!'

  // The plugins block can contain multiple plugin entries.
  //
  // The name for each plugin block below (greetingsPlugin, goodbyePlugin)
  // does not affect the plugin configuration, but they need to be unique
  // for each plugin.

  // Plugin config blocks can set the id, displayName, version, description
  // and tags for each plugin.

  // id and displayName are mandatory.
  // If no version is set, the project version will be used.
  // If no tags or description are set, the tags or description from the
  // pluginBundle block will be used, but they must be set in one of the
  // two places.

  plugins {

    // first plugin
    greetingsPlugin {
      id = 'org.samples.greeting'
      displayName = 'Gradle Greeting plugin'
      tags = ['individual', 'tags', 'per', 'plugin']
      version = '1.2'
    }

    // another plugin
    goodbyePlugin {
      id = 'org.samples.goodbye'
      displayName = 'Gradle Goodbye plugin'
      description = 'Override description for this plugin'
      tags = ['different', 'for', 'this', 'one']
      version = '1.3'
    }
  }

  // Optional overrides for Maven coordinates.
  // If you have an existing plugin deployed to Bintray and would like to keep
  // your existing group ID and artifact ID for continuity, you can specify
  // them here.
  //
  // As publishing to a custom group requires manual approval by the Gradle
  // team for security reasons, we recommend not overriding the group ID unless
  // you have an existing group ID that you wish to keep. If not overridden,
  // plugins will be published automatically without a manual approval process.
  //
  // You can also override the version of the deployed artifact here, though it
  // defaults to the project version, which would normally be sufficient.

  mavenCoordinates {
    groupId = "org.samples.override"
    artifactId = "greeting-plugins"
    version = "1.4"
  }
}

用户名错误

Execution failed for task ':banner2:bintrayUpload'.
> Could not create package '1xxx': HTTP/1.1 401 Unauthorized [message:This resource requires authentication]

版本错误

Execution failed for task ':banner2:bintrayUpload'.
> Could not create v': HTTP/1.1 401 Unauthorized [message:This resource requires authentication]

我编写的代码


publish {

    userOrg = 'luozheng'//bintray网的用户id
    groupId = 'cn.qssq666'//自己定义一个唯一的java的包名
    artifactId = 'banner'//在bintray上的package名字
    publishVersion = '1.0'//版本号
    desc = 'just upload this and ?'//描述,不重要
    website = 'https://github.com/qssq666/banner'//网站,不重要;尽量模拟github上的地址,例如我这样的;当然你有地址最好了
    licences = ['Apache-2.0']//协议

}
tasks.withType(Javadoc) { //防止doc错误
    options.addStringOption('Xdoclint:none', '-quiet')
    options.addStringOption('encoding', 'UTF-8')
    options.addStringOption('charSet', 'UTF-8')
}

//gradlew clean build bintrayUpload -PbintrayUser=luozheng -PbintrayKey=%JCENTER_PWD%  -PdryRun=false

本文档实际编写与http://note.youdao.com/noteshare?id=1183d22c3c3246167d6d671d43c5101c&sub=1CEF703230F84D15A18426229272D168

http://note.youdao.com/noteshare?id=3e3cb7a9706fdebed3a4c27276a8b036&sub=05801156892847CBAE73D05B1F971024
http://note.youdao.com/noteshare?id=e7e754ece3025ccebabb5d542688b976&sub=4468E9AA93F84035B3B2D31964A74DDE

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,658评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,482评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,213评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,395评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,487评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,523评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,525评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,300评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,753评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,048评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,223评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,905评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,541评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,168评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,417评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,094评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,088评论 2 352

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,646评论 18 139
  • Spring Boot 参考指南 介绍 转载自:https://www.gitbook.com/book/qbgb...
    毛宇鹏阅读 46,797评论 6 342
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,977评论 25 707
  • 经常使用 Giithub 的同学相信一定对下面的内容不陌生 通常当我们写完一个开源库之后,要把它发布到 maven...
    wanbo_阅读 4,979评论 6 25
  • 课程上,许多同学提出,不常喝到真正所谓的冰岛茶,喝过的多是那些小树或者几环外的,甚至和冰岛毫无关系的“冰岛茶”。 ...
    涴溪沙阅读 740评论 0 0