Questions tagged [jitpack]

JitPack.io is an easy to use package repository for GitHub. It builds GitHub projects on demand and publishes ready-to-use packages.

jitpack.io is an easy to use package repository for JVM and Android.
JitPack builds GitHub projects on demand and provides ready-to-use packages.

240 questions
2
votes
2 answers

How to publish a fat JAR to JitPack using shadowJar gradle plugin and not maven publish

It's not immediately intuitive on how to publish a fat JAR to JitPack because the shadow docs don't have a section for JitPack and the JitPack docs don't have a section on fat jars. All the docs say is that if you include maven-publish then they…
fIwJlxSzApHEZIl
  • 11,861
  • 6
  • 62
  • 71
2
votes
1 answer

How do I push two libraries in the same project in jitpack.io using Android Studio

I know how to push a library to jitpack using Android Studio. For a single library module, Step 1: I apply this plugin to project level build.gradle, classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1' Step 2: In library module's…
karan vs
  • 3,044
  • 4
  • 19
  • 26
2
votes
0 answers

Android studio 2.2.2 jitpack dependency url not synced and getting depends on one or more Android Libraries but is a jar

I have extracted .aar library as a library project using eclipse and using as submodule( only one classes jar containing this lib) in Android studio 2.2.2. Note: currently I am creating a Mini Library Project using the support submodule project.I…
harikrishnan
  • 1,985
  • 4
  • 32
  • 63
2
votes
1 answer

Trouble with jitpack/gradle in Intellij

I'm still getting started with gradle, but I found jitpack to allow for including dependencies across my github repos. I'm having issues getting dependencies to resolve, though. Some releases work, but other times I get "could not resolve." I have…
Ben Leitner
  • 287
  • 2
  • 10
2
votes
1 answer

Jitpack cant resolve repo, 401 read access error

A day ago I was able to use my library through jitpack just fine. Here is the line I was using in my build.gradle to pull in the dependency: compile 'com.github.MyOrg:MyRepo:feature_genre_tabs-SNAPSHOT' So this was pulling in a SNAPSHOT from my…
Orbit
  • 2,985
  • 9
  • 49
  • 106
2
votes
1 answer

How to make my Android library source code visible when a user adds the gradle dependency (so code doesn't have to be decompiled in Android Studio)

I have an Android library on jitpack.io and let devs add my library but just adding the dependency. But what I've noticed is that if this dependency is added, my library classes have to be decompiled to view the code. So for example, I have a class…
jacosta
  • 349
  • 2
  • 5
  • 17
2
votes
1 answer

get Jitpack as jar but need aar

I try to include the kaltura/player-sdk-native-android library in my project. kaltura dosn't provide a compiled version at maven. So I try to include it via jitpack.io allprojects { repositories { jcenter() maven { url…
Ralph Bergmann
  • 3,015
  • 4
  • 30
  • 61
2
votes
1 answer

Can't build using JitPack.io

I am trying com.github.lbehnke hierarchical-clustering-java anyBranch-SNAPSHOT is that…
Leo
  • 751
  • 4
  • 29
2
votes
1 answer

github releases in relation to branching, as used by jitpack

Looking at: https://help.github.com/articles/about-releases/ it looks like this is specific to github, and not a general git feature. My usage is, from my perspective, no different than branching. That is, branch x is just a marker. Maybe bug…
Thufir
  • 8,216
  • 28
  • 125
  • 273
2
votes
1 answer

where does jitpack download build artifacts to?

This hello world project runs fine, but where is the hello_api-latest.jar file? (Regardless that the client doesn't actually "need" the JAR, it should still download.) The JAR is on the classpath: thufir@mordor:~/NetBeansProjects/hello_client$…
Thufir
  • 8,216
  • 28
  • 125
  • 273
2
votes
1 answer

Error:(41, 13) Failed to resolve: com.rarepebble:colorpicker:1.6.0

Error:(41, 13) Failed to resolve: com.rarepebble:colorpicker:1.6.0 and Error:(42, 13) Failed to resolve: com.vstechlab.easyfonts:easyfonts:1.0.0 and Error:(40, 13) Failed to resolve:…
altu
  • 357
  • 2
  • 13
2
votes
1 answer

How to add my framework on gradle

I did a lot of research and I could't get one thing I have created my own framework and I want put in on gradle. I do not want copy paste every time a lot of code from one project to another. I want to do like this compile 'xxxxx' What should I…
pmb
  • 2,327
  • 3
  • 30
  • 47
2
votes
1 answer

How to use GitHub Repo using JitPack.io in Maven

I wants to use https://github.com/liquibase/liquibase version 3.5.0-SNAPSHOT I have added the following in pom.xml liquibase liquibase-core
Asad Khan
  • 473
  • 1
  • 8
  • 21
2
votes
1 answer

Error:(27, 13) Failed to resolve: com.antonyt.infiniteviewpager:library:1.0.0

This is in relation to antonyt's InfiniteViewPager: https://github.com/antonyt/InfiniteViewPager I have no idea why this isn't building in Android Studio and the issues page on his repo is not very helpful at the moment. I added the following…
Martin Erlic
  • 5,467
  • 22
  • 81
  • 153
1
vote
0 answers

Jitpack builds successfully, but there is no jar file or jar doesn't contain .class files

I'm trying to build my Android library with Jitpack, but it doesn't make any jar file, so I can insert implementation 'com.github.crylent:midilib:fbcf4f6c1e' into a gradle file in another project and successfully sync it, but can't import any…