ebean-orm / ebean

Ebean ORM
https://ebean.io
Apache License 2.0
1.47k stars 260 forks source link

ebean-parent 12.12.3 not published to Maven Central #2426

Closed vladimirfx closed 3 years ago

vladimirfx commented 3 years ago
      > Could not resolve io.ebean:ebean-core:12.12.3.
         > Could not parse POM https://repo.maven.apache.org/maven2/io/ebean/ebean-core/12.12.3/ebean-core-12.12.3.pom
            > Could not find io.ebean:ebean-parent:12.12.3.
              Searched in the following locations:
                - https://repo.maven.apache.org/maven2/io/ebean/ebean-parent/12.12.3/ebean-parent-12.12.3.pom
                - https://maven1.citc.ru/content/repositories/public/io/ebean/ebean-parent/12.12.3/ebean-parent-12.12.3.pom 
rbygrave commented 3 years ago

Yeah, I was wondering. When I released 12.12.3 there was a timeout from oss.sonatype.org.

Looking today we see 5 missing artifacts. I'll see if can release the missing ones or if I just need to release again as 12.12.4. That is, I haven't released a parent by itself (like ebean-parent) before so it will be interesting to see if I can do that.

rbygrave commented 3 years ago

Ok, looks like that has all worked. The missing 5 artifacts are in central now - yay!! (search not updated yet but should).

FYI I used:

  <properties>
    <maven.deploy.skip>true</maven.deploy.skip>
  </properties>

... in the pom of the the artifacts that had successfully make it to central.

So this all looks good now and I think we can close this with the thinking that search should index those new artifacts shortly.

Just going to add a comment to say that oss.sonatype.org gets hammered every now and then and this sort of thing happens. They do a heck of a big job for our jvm community. I'm not sure how the operation of central gets funded but it would be great to know that sonatype get the support they need to keep central operating well.

vladimirfx commented 3 years ago

Rob, thank You!