bintray

JFrog Bintray:delete package and relink to JCenter

空扰寡人 提交于 2019-12-11 17:52:39
问题 I am newbie to publishing library to Jcenter. I had uploaded my Android gradle plugin library to JFrog artifactory.The library is https://bintray.com/mmrx/pngquantGradlePlugin/pngcompress And then,I clicked the button 'link to jcenter'and it linked to jcenter successful. compile 'com.mmrx.pngcompress:pngcompress:1.0.0' was worked in my Android project. after a while,i found some bugs in the plugin library,and deleted the version 1.0.0 which had lined to the jcenter before.And uploaded the new

Publish to bintray a zip file with sbt-native-packager

混江龙づ霸主 提交于 2019-12-11 12:37:47
问题 I want to publish a zip file to bintray using the sbt-native-launcher. I am able to execute: sbt publish and it publishes the main artifacts (.jar, javadocs, and so on). I am also able to execute: sbt universal:packageBin and it generates the .zip file. However, when I execute: sbt universal:publish it gives the following error: [info] Wrote C:\src\ShExcala\target\scala-2.10\shexcala_2.10-0.0.1.pom tar: Cannot execute remote shell: No such file or directory tar: C\:\\Users\\Labra\\AppData\

Linking Bintray Package to JCenter

[亡魂溺海] 提交于 2019-12-11 10:37:22
问题 I have a package in Bintray called "tripod" which is here: https://bintray.com/bbende/bbende-maven/tripod The tripod package is a Maven project with a standard multi-module setup where the root pom artifactId is tripod, with sub-modules of tripod-search-api, tripod-search-solr, and tripod-search-lucene. In my personal Maven repo, all of these artifacts are published under the groupId com.bbende.tripod as shown here: https://dl.bintray.com/bbende/bbende-maven/com/bbende/tripod/ When I

How can I remove my library from Maven JCenter?

青春壹個敷衍的年華 提交于 2019-12-11 07:59:29
问题 I have uploaded my android library on https://bintray.com and linked it with Jcenter repository http://jcenter.bintray.com/. Now I want to remove this library from JCenter repository. How can I do this? 回答1: Unlink a package from JCenter is available only for paying customers, OSS users can't unlink a package from JCenter. In case you want to remove your package from Jcenter you only need to unlink your package. Enter your package, click on "Un-Link" button and then choose Jcenter. However,

Publications(s) specified but no publications exist in project :library

随声附和 提交于 2019-12-11 01:38:17
问题 I am trying to upload my Library to JCenter Repository . I followed this tutorial : https://www.virag.si/2015/01/publishing-gradle-android-library-to-jcenter/ My build.gradle for library after running gradlew bintrayUpload command. apply plugin: 'com.android.library' apply plugin: 'com.github.dcendents.android-maven' apply plugin: 'com.jfrog.bintray' // This is the library version used when deploying the artifact version = "1.0.0" android { compileSdkVersion 22 buildToolsVersion "22.0.1"

Maven artifact is not yet publish in BinTray

允我心安 提交于 2019-12-10 10:27:37
问题 I have a Maven project. I added in settings.xml file the configuration for the BinTray server: <server> <id>bintray</id> <username>USERNAME</username> <password>API_KEY</password> </server> Then in the pom.xml I have added: <distributionManagement> <repository> <id>bintray</id> <url>https://api.bintray.com/maven/USERNAME/maven/PACKAGE_NAME;publish=1</url> </repository> </distributionManagement> In the BinTray web interface I get the following message: Notice: You have 16 unpublished item(s)

Add Warning “A newer version of … is available” for custom library

浪子不回头ぞ 提交于 2019-12-08 01:57:27
问题 I've just released my library with version 1.2.1, code is in Github As you can see in the picture: I'm getting "Warning" that i'm using old version of appcompat library but there's no warning for my library. I've distribute my library via Bintray to maven & jcenter. Does anyone knows how to enable this Note/Warning on my library line? 回答1: The problem is that regardless of which repository your library is resolved from (being it jcenter() , mavenCentral() or any other repository), the check

Task 'bintrayUpload' not found in root project 'bin'

前提是你 提交于 2019-12-07 14:22:48
问题 I Followed Every step needed to publish my AAR file to JCenter and then synchronize it with Maven Central using https://github.com/danielemaddaluno/gradle-jcenter-publish. I wrote this command to follow his step 13 and step 14 and got this error: G:\Android Development Application\android-studio\gradle\gradle-2.2.1\bin>gradle bintrayUpload FAILURE: Build failed with an exception. What went wrong: Task 'bintrayUpload' not found in root project 'bin'. build.gradle(Project: xxxx) buildscript {

Add Warning “A newer version of … is available” for custom library

不羁岁月 提交于 2019-12-06 12:59:33
I've just released my library with version 1.2.1, code is in Github As you can see in the picture: I'm getting "Warning" that i'm using old version of appcompat library but there's no warning for my library. I've distribute my library via Bintray to maven & jcenter. Does anyone knows how to enable this Note/Warning on my library line? The problem is that regardless of which repository your library is resolved from (being it jcenter() , mavenCentral() or any other repository), the check for the latest version is hardcoded to go to Maven Central . That's plain wrong, if you ask me, but it is

Task 'bintrayUpload' not found in root project 'bin'

不问归期 提交于 2019-12-05 19:32:58
I Followed Every step needed to publish my AAR file to JCenter and then synchronize it with Maven Central using https://github.com/danielemaddaluno/gradle-jcenter-publish . I wrote this command to follow his step 13 and step 14 and got this error: G:\Android Development Application\android-studio\gradle\gradle-2.2.1\bin>gradle bintrayUpload FAILURE: Build failed with an exception. What went wrong: Task 'bintrayUpload' not found in root project 'bin'. build.gradle(Project: xxxx) buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:1.1.2' classpath