aerogear / keycloak-metrics-spi

Adds a Metrics Endpoint to Keycloak
Apache License 2.0
549 stars 156 forks source link

Remove jcenter from Gradle repositories #127

Closed frederic-huebner closed 2 years ago

frederic-huebner commented 2 years ago

Motivation

Since jcenter has beent shut down (see https://blog.gradle.org/jcenter-shutdown), the build fails for ./gradlew jar.

What

jcenter() has been removed from the build.gradle file. The default is mavenCentral().

Why

We at my company are building the .jar using Gradle. Since jcenter is the default repository, our builds failed.

How

By removing the repositories block containing jcenter().

Verification Steps

Add the steps required to check this change. Following an example.

  1. Try ./gradlew jar.
  2. Should run successfully.

Checklist:

Progress