hmrc / logback-json-logger

Apache License 2.0
6 stars 7 forks source link

Bintray shutdown #10

Open jelena-vlasenko opened 3 years ago

jelena-vlasenko commented 3 years ago

As of May 1st Bintray services will no longer be available. Is there a plan to move the logger to another repo?

More about this issue: https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/

noredine69 commented 3 years ago

Hi ! We're facing a big issue, the logback-json-logger is no longer available on Bintray, and not yet in search.maven.org. As a workaround, I've deployed the jar on our local artifactory, do you know when it will be available on search.maven.org? Kind regards

https://search.maven.org/search?q=uk.gov.hmrc

sam-white commented 3 years ago

We have also been having issues relating to this. Are there any plans to move to a new repo?

fernanluyano commented 3 years ago

Any updates on this?

sambnh commented 2 years ago

HMRC artefacts appear to have moved to https://open.artefacts.tax.service.gov.uk/

DavidGregory084 commented 1 year ago

For sbt users, you can add the new repositories like this:

resolvers ++= Seq(
  MavenRepository(
    "HMRC-open-artefacts-maven2",
    "https://open.artefacts.tax.service.gov.uk/maven2"
  ),
  Resolver.url(
    "HMRC-open-artefacts-ivy2",
    url("https://open.artefacts.tax.service.gov.uk/ivy2")
  )(Resolver.ivyStylePatterns)
)