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

Bintray, merge packages with common group id

I have many packages within one group id. my main group id is: com.github.kondaurovdev i've subgroups: com.github.kondaurovdev.snippets com.github.kondaurovdev.akka_http ... I don't want to create many packages in bintray, because i will have to…
Alexander Kondaurov
  • 3,677
  • 5
  • 42
  • 64
0
votes
2 answers

Couldn't Link To Jcenter

I uploaded android library to bintray.com and tried to sync it to jCenter. But I couldn't find "Add To Jcenter" button in bintray.com web UI. I have a lot of tutorials but there is this button. But on my side, I can't see anything now. What is the…
0
votes
1 answer

Gradle cannot resolve my private bintray artifact

I have setup a private repo, package etc.. where I have uploaded my JAR on bintray UI it says I need to set this in my gradle maven { url "http://xxx.bintray.com/Test" credentials { username 'xxx' …
Johny19
  • 5,364
  • 14
  • 61
  • 99
0
votes
1 answer

Use Un-Published bintray artifact

I have recently uploaded an artifact to bintray using gradle. How can I use it using my username and api key without publishing to Maven Central?
alchemist
  • 1,081
  • 12
  • 17
0
votes
2 answers

Gradle fails to resolve dependencies from bintray

I have uploaded library to bintray, but when I try to use it in my project gradle build fails with Error:(26, 13) Failed to resolve: com.ymirski.library:date-utils:0.0.1 Here is my app build.gradle dependencies: dependencies { compile…
user4696584
0
votes
1 answer

Uploading android module to bintray and linking to jcenter

Hi so I'm following the github site of Gradle Bintray Plugin https://github.com/bintray/gradle-bintray-plugin#readme tutorial however I don't quite understand the publications part. Can anyone help me with this? I'am currently working on bintray…
Christian Callelero
  • 846
  • 1
  • 8
  • 17
0
votes
1 answer

Sbt plugin publication and resolution on bintray, different paths (sbt-bintray plugin)

I have some troubles to publish/use a custom sbt plugin from bintray. I'm able to publish sbt-plugin on bintray but when I try to use it the resolver uses another path. I have followed the official guide but adapted it to the latest version of the…
gervais.b
  • 2,294
  • 2
  • 22
  • 46
0
votes
1 answer

How do I see invited users in bintray?

Steps to Reproduce Sign up for a new enterprise trial. Go to the Organization Edit screen. Click on the Members section. Click on invite by email. User clicks on received email. They create an account using the pattern of username@orgid. The admin…
Schandlich
  • 693
  • 1
  • 4
  • 21
0
votes
1 answer

Jar file contains no class files after bintrayUpload

I am trying to publish my lib to bintray. But the jar file that is created only contains a META-INF folder and no class files. I have followed the guide at https://github.com/bintray/gradle-bintray-plugin#readme but can not get it to work. This is…
Wox
  • 163
  • 1
  • 7
0
votes
1 answer

Bintray resource limits

An open source project which I know is using bintray currently to deploy their build binaries via travis or appveyor. But when we upload, we get the message 'Error uploading artifact to BinTray (403 status): Account resource usage limits were met…
0
votes
1 answer

Gradle fails to find my .jar on bintray

I have just added my library to my maven repository via Bintray but when I try to add the dependency in a project, Gradle fails to find the .jar. Error:Could not find mylib.jar (com.test.mylib:mylib:1.0.0). Searched in the following…
0
votes
1 answer

Have a proxy repository in bintray from another repository

I try to find out if it is possible to have a private maven repository (nexus, artifactory) run on the net to be proxied to my bintray account. Anybody did this or is aware of such functionality?
ferdy
  • 7,366
  • 3
  • 35
  • 46
0
votes
1 answer

Publishing Android Library from JCenter to Maven Central

I was following these steps to submitted a File Picker Android Library on JCenter through Bintray and Android Studio. The library has been linked to JCenter. I have provided with all details like Sonatype account details and GPG keys, Also have…
Angad Singh
  • 1,032
  • 1
  • 17
  • 36
0
votes
1 answer

How to sync from Bintray to Maven Central without knowing Maven

I recently started working as a developer and I need to sync a repo from bintray to maven central. I have never used Maven or the mvn command line utility ever - I started as a Scala sbt developer. I was told to follow these instructions but I…
Michael Lafayette
  • 2,972
  • 3
  • 20
  • 54
0
votes
1 answer

Resolving Artifacts from bintray via gradle (non jcenter)

I've deployed artifact to bintray as it whitten in documentation (using their plugin). All looks fine. It is opened in browder, structure looks fine: https://dl.bintray.com/flymob/maven/ Now I want to use it via gradle in Android Studio before…