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
0
votes
1 answer

Where to download repositories after Bintray sunset as the bintray link responds with Forbidden

Recently I heard about bintray sunset starting 1st May 2021. How can I download the artifacts hosted on bintray? For example, I want to download https://github.com/americanexpress/nodes/ which is hosted on…
sunder
  • 968
  • 2
  • 11
  • 31
0
votes
0 answers

When running gradle task through teamcity ,getting following issue

Could not determine artifacts for javax.ws.rs:javax.ws.rs-api:2.1.1 Could not get resource 'https://jcenter.bintray.com/javax/ws/rs/javax.ws.rs-api/2.1.1/javax.ws.rs-api-2.1.1.$%7Bpackaging.type%7D'. Could not HEAD…
ravvi
  • 117
  • 6
0
votes
1 answer

How to setup Android artifacts using the JFrog Platform?

I have been using the JFrog Bintray to upload/download Android libraries from the cloud. Recently I have noticed JFrog Bintray is sunsetting: https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/ So by May 1st 2021, I have…
jclova
  • 5,466
  • 16
  • 52
  • 78
0
votes
0 answers

Cannot run android project because https://jcenter.bintray.com/ is down

Hello today i want to run android project but getting error like this, anyone know how to solve this issue, i check https://jcenter.bintray.com/ is down (403), is anyone face same issue with me ? please reply if you know how to fix this, thanks
0
votes
0 answers

OSS Maven - transition from Bintray

We're using Bintray (via JCenter) to publish our open source Android packages. JFrog are ending Bintray and telling us to use JFrog Platform, but the OSS option for that product is not available yet. What am I missing?
noamtm
  • 12,435
  • 15
  • 71
  • 107
0
votes
1 answer

Nightly updates to Bintray is not synced to JCenter

We have a few artifacts hosted on Bintray and synced to JCenter. In all versions, we have a special, nightly-updated version, which is named "0.0.0-nightly". We push a new "0.0.0-nightly" for each artifact everyday. It had been working well for at…
Xunkai
  • 36
  • 3
0
votes
1 answer

Bintray add to JCenter: The Version Control returns 404

I'm trying to create a Maven repository through Bintray that is part of JCenter. I have already uploaded my library by following this guide, but when I click on the button that says "Add to JCenter" and follow the prompts, I get an error that…
Ivan Garza
  • 553
  • 2
  • 14
0
votes
0 answers

Make Gradle resolve my library's maven url automatically

My library is on Jcenter. To import it as a Gradle dependency, one must also manually specify the repository's URL like this in the receiving project's build.gradle : repositories { jcenter() maven { url …
Thilaw Fabrice
  • 662
  • 6
  • 10
0
votes
2 answers

Publish Powershell module to bintray nuget repo

I created a nuget repository in bintray and I'd like to publish a Powershell module. I've created a package in Bintray and added a version. First, I added the repository: Register-PSRepository -Name "Bintray" -SourceLocation…
TheNextman
  • 12,428
  • 2
  • 36
  • 75
0
votes
2 answers

Bintray docker repository storage

On Bintray I found out that I have a private docker repository consuming quite a lot of space: Account usage by repository I then proceeded to do some house keeping and kept only the last 3 tags of all the images I have. However, that didn't help…
0
votes
1 answer

How to get a namespace path for my library on bintray(jcenter)?

I have an android library with dependency e.g: in.ac.mylibrary:libraryname:1.0.0 Now how do I make sure that no one else uses the namespace ( in this example 'in.ac.mylibrary' ) that I have used for their libraries i.e. how do I own this namespace…
0
votes
1 answer

Bintray SAML Authentication

I work for an org that uses Bintray's Pro plan and am trying to enable SAML Authentication for the organisation? According to this doc there is a enable SAML Authentication button which I can't seem to locate…
0
votes
1 answer

JCenter maven-metadata.xml doesn't have all module versions from Maven Central

In JCenter net.sourceforge.plantuml:plantuml module doesn't have version 1.2020.15 in maven-metadata.xml. But, in Maven Central this module has this version listed in maven-metadata.xml. However, I managed to successfully download…
remal
  • 1
  • 1
0
votes
2 answers

Artfactory not syncing org tree with jcenter

I'm setting up a new atrifactory installation for the first time in my life. Downloaded the tar and extraceted it ok. Got some firewall rules in place to allow https to jcenter.bintray.com. After an initial refresh I see loads of artifacts in the…
Remco
  • 1
0
votes
1 answer

Kotlin-Multiplatform - no Jar Files downloaded on Gradle depedencies after Upload-Publish on Bintray

I was able to publish my work on bintray a while a go, when I try it out on a test project repositories { maven("https://dl.bintray.com/user/libraries/") } dependencies { implementation("com.user.project:project-name:version") } I get no…