Guides and reports

Migration from JCenter to Maven Central

By Caio Faustino, Software Engineer, Adyen

May 19, 2021
 ·  10 minutes
Migration from JCenter to Maven Central

Everything started on the cold evening of February 3rd, Android Twitter was suddenly agitated with the news.JCenter is shutting down!

Since I can remember, JCenter has been the default repository for all Android libraries.

Ever since Android development was most commonly done on Eclipse IDE, when you create a new project, the template will have generated the whole project structure, which includes the Gradle files, and in those files a small statement that says

Language: html
1
2
3
    repositories {
    jcenter()
}

  

Over the years Google decided to have their own Maven repository, so they added “google()“ to that statement as well. But for simple projects, that’s all you needed. And because of that, it became common that newly developed libraries would also try to be included in JCenter for convenience. It’s a well-known open-source repository, it also mirrors Maven Central, and developers don’t need to worry about adding a new repository to their project. Easy right?

Well, what a big shock when all of a sudden we all get the news that JCenter will soon be gone! What about all the thousands of libraries that are there? How will I build my project now?

As developers, we all have tasks where we underestimate the amount of effort it’s going to require, right? That’s normal, estimations are pretty hard. We might not fully understand the requirements, we might find problems along the way, or we might simply not grasp the sheer scope of the task ahead of us. Well, for me, this task was a bit of all of the above.

And so the journey begins…

Deciding where to migrate

One of the beautiful things about being an Android developer is the community around it. I think the fact that the OS is Open Source has pushed the mentality of ownership to everyone in one way or another. Most people will never dig into the Framework code (although it is an interesting experience), but knowing that you can is already empowering. So no later than the next day, there were already great guides and blog posts on how to migrate your project to another widely used open-source repository, Maven Central.

The decision to move our public Android libraries (Componentsand3DS2 SDK) from JCenter to Maven Central seemed like a no-brainer. But here at Adyen, we like to “includedifferent peopleto sharpen our ideas”, so I started to ask around and check if this was indeed the best approach. One thing we also considered was to do what Google did and host our own repository, this would protect us from having to worry about the external service shutting down on us again.

First I reached out to our awesome Security team to explain the situation and see if they had any concerns, and talk about the pros and cons of each approach. There were a few questions about making sure that our release process was solid, and how hosting our own repository actually looks like.

So I reached out to our Infrastructure team to get a feeling for the feasibility of this approach. We had some nice discussions and they were pretty enthusiastic about the idea as well. They presented a well-structured plan on how we could use a Nexus repository with good scalability and reliability in mind. But in the end, we all agreed that this was not really necessary and that leveraging the existing infrastructure of Maven Central was a good approach for now.

Starting the investigation

Like I mentioned earlier, there were a few blog posts about moving to Maven Central. One of the best ones for me wasthis postbyMárton Braun. In it, Márton describes the whole process of how to upload a library to the Central repository. In summary, this includes:

  1. Registering a Jira account with Sonatype
  2. Claiming ownership of your namespace
  3. Setting up a GPG key to sign your artifacts
  4. Setting up the Gradle task in your project that publishes the release
  5. How to use the Nexus Repository Manager on OSSRH to make your release public

All of this would have been a huge help to anyone already, and it was pretty similar to the setup we already had for JCenter so I felt pretty confident. But wait, there’s more! Márton also explains how you can:

  1. Use an extra Gradle plugin to automate the public release of your artifact
  2. Automate all of the above using GitHub Actions!

This was simply perfect! We already use GitHub Actions to automate our CI process on Components, so I could simply follow along and adjust any improvements I could find.

Migrating the release process

This seemed pretty straightforward. I opened my Sonatype account, used the same namespace we already had set up for ourJava API library, and started working on the CI adjustments. Soon enough I opened aPRand felt like this was going to be a piece of cake, just a couple more details to go. But there was one small detail I forgot to take into consideration...

What about the old artifacts? The versions that are already released.

Migrating the old artifacts

Ah, this must surely be another common issue for Android Developers, lots of people need to migrate their libraries, so blog posts to the rescue!

So initially I foundthispost by Marco Gomiero where he suggests the following approach:

  1. Go to the JCenter website and click on the files you want to download.
  2. Sign the files one by one using the command-line GPG tool.
  3. Go to OSSRH and click on the option to manually upload artifacts.

That sounds pretty good, pretty straightforward. I did it once, and it worked! Brilliant! Now I just need to repeat this process…

1134 times.

This is where I started to worry a little bit. See, we have several modules in our library to make it more modular and each module is its own little library. Each one has several versions, and as it turns out, this scales up pretty quickly. The solution is to try and automate this process somehow.

Automating the migration

Let me start by saying that I’m definitely not the best at scripting. My knowledge of Shell scripting is very basic at best, but this seemed like a good opportunity to learn by doing, so I started digging in.

Downloading the artifacts

The first step seemed to be to download all of our existing artifacts from JCenter. The most common and powerful tool to download stuff from the internet seems to be curl so with only one command I could do a lot.

First I noticed that if the URL is a folder, the repository would return a simple HTML with the links to the next folders or files. So first I try to filter that out and find the links inside it.

Language: html
1
2
    curl_result=$(curl $download_path)
filter=$(echo $curl_result | tr ' ' '\n' | grep href=)

  

Then I clean up the result a bit and use it to move on.

Language: html
1
2
3
4
5
    for f in $filter; do
  pattern="href="
  path=$(echo $f | tr -d '"' | tr -d ':')
  path=${path/$pattern/}
...

  

So with this, I was able to write a small script that navigates the repository folders. and with a small assumption of what should be a file or a folder, I could either download it or navigate inside and start the script again recursively.

Language: html
1
2
3
4
5
6
7
8
    if [[ $path == *"."[a-z][a-z][a-z] ]]; then
    echo "Downloading file: $download_path$path"
    (cd $local_path && curl -O "$download_path$path")
else
    echo "Creating folder at: $local_path$path"
    mkdir -pv "$local_path/$path"
    $script_path "$download_path$path" "$local_path$path"
fi

  

And in the end, I have a local folder with the same structure as the repository and all the files were downloaded.

Signing the artifacts

JCenter didn’t require that the artifacts were signed, but due to changes in the release process over time, in our case, some were and some weren’t. Since this was an opportunity to start from scratch I decided to have a new key to sign all the artifacts, the old and the future ones.

So I asked our internal security team to create an email dedicated to associate with the new signature and then used it to sign all of the files I had downloaded. A similar approach to the previous script worked well, just navigate the folders and sign the files with GPG.

Language: html
1
    gpg -ab --default-key $key $file_name
  

Uploading the artifacts

Now all I had to do was upload the artifacts and the signatures to Maven Central. I thought my recursive script approach would work well again. But how could I upload the files? Probably curl would help me again.

After some research, I foundthis poston the Sonatype support page that seemed like a good idea. With my profile ID and credentials at hand, I could make a POST call to OSSRH to create a staging repository. Then I could use that repository ID to upload the files. Something like this:

Language: html
1
2
3
    curl -X POST -d @file.xml -u $username:$password \
-H "Content-Type:application/xml" \
-v https://oss.sonatype.org/nexus/service/local/staging/profiles/$profile_id/start
  

And this seemed to work fine in the beginning. I was able to open the repositories and upload the files. But then when I wanted to close the repository to publish it, OSSRH would give me errors. Invalid signatures, missing metadata. I was pretty lost at this point.

I decided to reach out to the people that had helped me without knowing until now, the blog post writers! I was already following Márton on Twitter so I decided to send him a message to see if he knew anything about this process. Unfortunately, he didn’t, but after a few days, he messaged me back with another article he had found. My hope rekindled!

Uploading the artifacts… again.

He had sent methisgreat article byJeroen Molsthat was pretty recent. Jeroen was facing the same problem as me, but he was much better at finding answers for it. This part specifically humbled me a bit.

“To sign and upload the artifacts to Maven Central, what better tool to use than Maven itself?”

Of course, I hadn’t even considered that. Unfortunately, I couldn’t directly use his script but it gave me a lot of insight into how I could approach the problem differently.

First I tried to upload the files with the signatures already using `mvn deploy:deploy-file`, but that didn’t work so well for some reason, so instead, I deleted my existing signature files and decided to mimic his approach.

Language: html
1
    find . -type f -name '*.asc' -delete
  

The little trick for me was to set the new GPG key as the default signature key since I couldn’t specify the key as a parameter to Maven, so I created the configuration file for it. The file is located at~/.gnupg/gpg.confand contains the linedefault-key <your_key>in it.

I also set up my credentials in the maven configuration file like Jeroen mentions in his post and started making some tests. Luckily he also mentions thisSonatype documentationa couple of times, and that’s where I could see he did a much better job than me at researching. This helped me in finding out how to also add the sources and javadocs files to my script.

Language: html
1
2
3
4
5
6
7
8
    $ mvn gpg:sign-and-deploy-file \
  -Durl=https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ \
  -DrepositoryId=ossrh -DpomFile=ossrh-test-1.2.pom \
  -Dfile=ossrh-test-1.2-sources.jar -Dclassifier=sources
$ mvn gpg:sign-and-deploy-file \
  -Durl=https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ \
  -DrepositoryId=ossrh -DpomFile=ossrh-test-1.2.pom \
  -Dfile=ossrh-test-1.2-javadoc.jar -Dclassifier=javadoc

  

Unfortunately, I then found out I still had one more thing to solve, the POM filerequirements.

Adapting POM files

Since we have several small libraries from different older release processes, there was not a standard I could rely on. So I created a template XML file with some placeholders to replace the original POM files. Shoutout to Rodrigo Rocco here at Adyen who helped me a LOT with writing this script.

We read the original POM file to get some tags and replace them in the template file that has all the requirements.

Language: html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
    artifact=$(cat $pom_file | tr '\n' ' ' | sed -E 's/(<\/artifactId>).*/\1/g' | sed -E 's/.*(<artifactId>)/\1/g')
version=$(cat $pom_file | tr '\n' ' ' | sed -E 's/(<\/version>).*/\1/g' | sed -E 's/.*(<version>)/\1/g')
name=$(cat $pom_file | tr '\n' ' ' | grep name | sed -E 's/(<\/name>).*/\1/g' | sed -E 's/.*(<name>)/\1/g')
description=$(awk '/\<description\>/,/\<\/description\>/' $pom_file | tr '\n' ' ')
dependencies=$(awk '/\<dependencies\>/,/\<\/dependencies\>/' $pom_file | tr '\n' ' ')

cat $pom_template | \
          	sed "s#%%%ARTIFACT%%%#$artifact#g" | \
          	sed "s#%%%VERSION%%%#$version#g" | \
          	sed "s#%%%NAME%%%#$name#g" | \
          	sed "s#%%%DESCRIPTION%%%#$description#g" | \
          	sed "s#%%%DEPENDENCIES%%%#$dependencies#g" | \
          	xmllint - > "$pom_file.new"
  

Hereis the full snippet andhereis the template

Conclusion

So finally with the correct POM files, the correct signatures, the right tool, lot of help from a lot of people, running the upload script for approximately 8 hours, a result log file with 130.000 lines, all the 1134 versions have been successfully uploaded to Maven Central.

It’s been a wild ride, but I learned a lot in the process. As an Android Developer, this is not what we are used to dealing with every day, but it’s exactly the kind of challenge that makes us learn and grow as professionals. I’m super happy that here at Adyen we get the ownership and the encouragement to face them head-on, and also get to have fun while doing it.

Technical careers at Adyen

We are on the lookout for talented engineers and technical people to help us build the infrastructure of global commerce!

Check out developer vacancies

Developer newsletter

Get updated on new blog posts and other developer news.

Subscribe now



Fresh insights, straight to your inbox

By submitting your information you confirm that you have read Adyen's Privacy Policy and agree to the use of your data in all Adyen communications.