spotify / fmt-maven-plugin

Opinionated Maven Plugin that formats your Java code.
MIT License
335 stars 65 forks source link

[Don't merge] Add relocation info from com.coveo to com.spotify.fmt #130

Closed klaraward closed 1 year ago

klaraward commented 2 years ago

See also #129

What this would give is information similar to this one - https://mvnrepository.com/artifact/org.apache.commons/commons-io

klaraward commented 2 years ago

Did you create this for example? I don't think we need. If we want to republish each old version with our group we need them to checkout each version tag and republish with the minimal pom that looks like

<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.coveo</groupId>
  <artifactId>fmt-maven-plugin</artifactId>
  <version>${VERSION_ALREADY_PUBLISHED}</version>
  <distributionManagement>
    <relocation>
      <groupId>com.spotify.fmt</groupId>
    </relocation>
  </distributionManagement>
</project>

right? I might be wrong

I was thinking we would do this for one version, 2.14, and @malaporte could run deploy from this branch (once we change the version to 2.14 in it)

What I intended to do was to produce sort of the same small pom as above, but with the signing plugin as well. We could make pom in this PR even smaller.

klaraward commented 2 years ago

Made the pom smaller

caesar-ralf commented 1 year ago

closing old PR