Questions tagged [bintray]

JFrog Bintray is a universal distribution hub, which provides features like a global distribution network (CDN), extreme throughput and redundancy for downloads, permission control for external users (entitlements), product and EULA support etc. It's free to use for consumption and free to use for distribution of OSS projects. Bintray is also the home for JCenter, a popular Java components repository.

JFrog Bintray is a universal distribution hub, which if free to use for consumption and free to use for distribution of OSS projects. It provides features like:

  • a global distribution network (CDN)
  • extreme throughput and redundancy for downloads
  • permission control for external users (entitlements)
  • product and EULA support
  • full REST API automation
  • CLI
  • plugins for popular CI servers and build tools
  • indexing as much binary packages standards as possible
  • "Set Me Up" snippets for easy configuration
  • smart checksum-based binary storage
  • and much more.

Bintray is also the home for , a popular Java components repository.

For more information please see:

399 questions
6
votes
2 answers

Could not get https:////dl.bintray.com/lukaville/maven/com/nbsp/library/1.09

I am getting an error as shown below. Could not GET 'https://dl.bintray.com/lukaville/maven/com/nbsp/library/1.09/library-1.09.pom'. Received status code 403 from server: Forbidden The Gradle configurations are shown below. Any help is…
Bright Varghese
  • 103
  • 1
  • 2
  • 9
6
votes
2 answers

SoftwareComponentInternal with name 'java' not found

App module build.gradle apply plugin: 'com.android.library' apply from: rootProject.file('deploy-bintray.gradle.kts') android {...} deploy-bintray.gradle.kts it's my bintray/maven publications script. I'm having problems generating .jar files: val…
GuilhE
  • 11,591
  • 16
  • 75
  • 116
6
votes
1 answer

Could not GET 'https://jcenter.bintray.com/com/google/' Received status code 502 from server: Bad Gateway

My project has no problem till yesterday. Today my team and I get the same problem while building the project. Could not GET 'https://jcenter.bintray.com/com/google/android/gms/play-services-location/maven-metadata.xml'. Received status code…
Bhuvanesh BS
  • 13,474
  • 12
  • 40
  • 66
6
votes
1 answer

Confused about process to publish snapshots to BinTray

I want to investigate publishing Hibernate ORM jars to Bintray. However one requirement we have is to be able to publish snapshots, which I see Bintray now supports through this OJO repository. However, I am quite confused about how this is…
Steve Ebersole
  • 9,339
  • 2
  • 48
  • 46
6
votes
2 answers

How to publish android library to Jfrog bintray?

I am working on Android library development, i have already finished my library work and generated aar and jar file, but when i am trying to publish to binary at that time i am getting one error message. FAILURE: Build failed with an exception. *…
deeptimancode
  • 1,139
  • 4
  • 18
  • 40
6
votes
1 answer

Access a Bintray private repository via sbt

I would like to access a Bintray repository with credentials from sbt. I have tried the following: resolvers += Resolver.bintrayRepo("...", "...") as well as, resolvers += Resolver.url("...", url("..."))(Resolver.ivyStylePatterns) followed by…
ciwood
  • 63
  • 5
6
votes
1 answer

Travis-CI: Using environment variables in the deploy section of the .travis.yml file

I'm using Travis-CI to build my Go project and so far I used the gimme script with combination of travis go environment to cross-compile the project. I switch to Go 1.5 that supports the GOOS and GOARCH environment variables to cross compiler…
Shikloshi
  • 3,761
  • 7
  • 32
  • 58
6
votes
2 answers

Publishing android library to jcenter error - Add a POM file to the latest version of your package

I am trying to publish my Android library to JCenter using Bintray's web site. I have created a Maven styled zip file which includes all the needed artifacts: aar, sources, javadocs and pom file using the following blog…
Ran
  • 1,089
  • 1
  • 12
  • 30
6
votes
2 answers

Sbt for publish in bintray

I have the next configuration: lazy val mainProject = Project( id = "project-helper", base = file("."), settings = Project.defaultSettings ++ Seq( name := "my-first-project", version := "0.1-SNAPSHOT", scalaVersion :=…
lito
  • 989
  • 8
  • 21
5
votes
2 answers

Could not HEAD 'https://jcenter.bintray.com/com/facebook/react/react-native/maven-metadata.xml'. Received status code 502 from server: Bad Gateway

I am trying to build my react-native project for android and getting the following error on Windows but its working on Mac. $ react-native run-android info Running jetifier to migrate libraries to AndroidX. You can disable it using "--no-jetifier"…
Surya
  • 971
  • 2
  • 17
  • 30
5
votes
2 answers

Can't add android library to JCenter

I am trying to publish the library to JCenter with Bintray, according to this article: https://medium.com/@anitaa_1990/6-easy-steps-to-upload-your-android-library-to-bintray-jcenter-59e6030c8890. I successfully added the library to Bintray, but when…
Andrii Chernysh
  • 365
  • 3
  • 13
5
votes
0 answers

Library Files not uploading to Bintray

I'm trying to update an Android library on Bintray, But its not showing the new version of my library. I updated my VERSION_NAME and VERSION_CODE in my library gradle.properties. I updated my library version in my bintray.gradle file in my…
Tosin Onikute
  • 3,883
  • 6
  • 38
  • 61
5
votes
2 answers

there is no "add to jcenter" button in "https://bintray.com"

I want to upload a library to jcenter, now I have upload it into "https://bintray.com", but there is no "add to jcenter" button in "Linked to" module, I have read the document and compared it with other person's, but can't found out the reason. the…
df qin
  • 67
  • 6
5
votes
1 answer

How to include dependencies when publish the library to bintray in android

I'm new to publish own library in android. I created my own library and uploaded it to bintray. My library depends several third party libraries. When I see pom.xml file, there are dependency information. But when I add my library to test project…
5
votes
2 answers

How to publish a regular, non-Android Java library so that it becomes available for inclusion in Java projects via Maven & Gradle build scripts?

I recently authored a 3rd party library for Java. Currently, I'm distributing the library via Github and a website I own where I make it possible to download the JAR file. I want to make it so developers can use Gradle and Maven (and possibly other…
1 2
3
26 27