Questions tagged [maven-central]

The Official Maven Repository, hosted by Sonatype.

Maven Central is the official Apache Maven repository. It is hosted by Sonatype, for Apache Fundation.

It has moved several times from central.maven.org, repo1.maven.org and many other. The official address is now http://search.maven.org/

When using a Maven repository, it is important to be aware about Maven Coordinates.

The official guide about How to upload to the Central Maven repository may also come to help.

237 questions
0
votes
2 answers

New artifact version is not listed after publishing to Maven Central

We recently published a new version of existing artifacts. The version shows up if I explicitly type the version number in the…
Jatin Sanghvi
  • 1,928
  • 1
  • 22
  • 33
0
votes
2 answers

Unable to resolve dependency androidx.test:core:1.9.0-alpha01

I have tried lot but I having this issue try generate release build Could not find androidx.test:core:1.9.0-alpha01. Searched in the following locations: -…
Rajasekaran M
  • 2,478
  • 2
  • 20
  • 30
0
votes
1 answer

Migrate from jCenter to MavenCentral, should I create a third party library JAR file containing all its dependencies?

I'm working on migrating all the third party libraries in my project from jCenter to MavenCentral. But some of them are really old and have stopped being supported. Because of the time constraint, I decided to clone those libraries, create JAR files…
BG_TeMe
  • 55
  • 2
  • 5
0
votes
2 answers

Change TapTargetView into a TapTargetSequence

In this code example I have a single TapTargetView working: if (controllerVisible && playerView.isControllerFullyVisible()) { if (setPrefs.firstRun) { TapTargetView.showFor(PlayerActivity.this, …
Brenton
  • 35
  • 11
0
votes
1 answer

Why doesn't the dependency contain a jar in the maven public repository https://mvnrepository.com?

I a maven rookie and am wondering how to get a binary jar file if it is not already in the repo. Specifically i'm in need of: jackson-dataformats-text-2.13.0.jar. Do I need to build it myself? I'm used to creating a project and marking a library as…
simgineer
  • 1,754
  • 2
  • 22
  • 49
0
votes
1 answer

Is it possible to synch from our own Artifactory repo to Maven Central?

For some time, we have published all our artifacts to our own repository, which we host ourselves, using JFrog Artifactory. We have some open source libraries we want to publish to Maven Central, and have come to the point where can publish every…
0
votes
0 answers

Cannot find jar in MVNrepository

I have successfully published the jar to Maven Central https://repo1.maven.org/maven2/, and I can also use it in my project, but why I can't find it in MVNrepository https://mvnrepository.com. Here is the jar:
ML.Chowzzz
  • 35
  • 9
0
votes
1 answer

Maven compiler-plugin access forbidden

Suddenly I started seeing this error when running a maven project on Jenkins Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.0:compile (default-compile) on project my-project: Execution default-compile of goal…
CuriousGuy
  • 1,545
  • 3
  • 20
  • 42
0
votes
0 answers

Migrating from jcenter() to mavelCentral() issue in android

As you know Jfrog is going to shutdown jcenter() and we have to migrate from jcenter() to mavencentral() as android docs mentioned. I did it but after building the project i get the following error : Could not find…
Edalat Feizi
  • 1,371
  • 20
  • 32
0
votes
1 answer

Could not find com.android.tools.build:gradle:4.1.0 when migrating from jcenter to mavenCentral

Jfrog is going to shutdown jcenter and that means we cannot use jcenter in our build.gradle file for downloading needed libraries and as i saw in different websites and also in android docs we can use mavenCentral() instead of jcenter but when is…
Edalat Feizi
  • 1,371
  • 20
  • 32
0
votes
1 answer

How should I represent a library with two configurations in Maven Central?

I am about to deploy a library "A" in Maven Central that I currently release in two configurations that are interchangeable but incompatible. One configuration is full featured, the other is more likely to be accepted in an "app store". The choice…
Alan Snyder
  • 408
  • 2
  • 13
0
votes
0 answers

Error Resolving Dependencies from Maven Repository

I have created a Maven Repository over Jfrog Artifactory using https://www.jfrog.com/confluence/display/JFROG/Maven+Repository. I have created Maven Repo in all as a REMOTE Repo with the url being pointed to "https://repo1.maven.org/maven2/". I have…
0
votes
1 answer

Failed to execute goal org.apache.maven.plugins:maven-gpg-plugin:1.5:sign (sign-artifacts) on project playerinputs: Exit code: 1 -> [Help 1]

I was trying to upload my first api to the maven central but I continue getting this error. I haven't been able to solve it. I am running mvn clean deploy I have read that running mvn clean deploy -Dgpg.skip=true could work but it doesn't. I also…
Nemo_64
  • 15
  • 1
  • 5
0
votes
0 answers

Unable To Access Jar Published To Maven Central? - Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.0:compile

I have an application, BankShots, that uses a jar that I created as a dependency, BankShotsContracts, which has been successfully published to Maven Central. I am unable to access BankShotsContracts from BankShots and continue to get failures when…
0
votes
1 answer

Pointing AzureDevops to local repository manager (Nexus)

How can I configure Azure Devops to point to repository manager instead of maven central repository for upstream resources ? P.S. - I don't want to make changes in my projects pom.xml or settings.xml to use the repository manager directly. Is there…