CommandersAct / AndroidV5

Other
5 stars 2 forks source link

Update scm information and project URL in the `pom.xml` file #6

Closed MGaetan89 closed 2 months ago

MGaetan89 commented 3 months ago

Context

On Maven Central, we can see that the pom.xml file for ServerSide points to the old repository:

<scm>
  <connection>scm:git:github.com/TagCommander/Android.git</connection>
  <developerConnection>scm:git:ssh://github.com/TagCommander/Android.git</developerConnection>
  <url>https://github.com/TagCommander/android/tree/main</url>
</scm>

Same for the project URL:

<url>https://github.com/TagCommander/android/</url>

[!NOTE] This is probably also true for the other modules.

Issue

This causes automatic tools, like Dependabot, to link update PRs to the wrong repository. Also, the lack of tags prevents it from including release notes in the PR description. For example, you can check this PR.

Proposed solution

MGaetan89 commented 2 months ago

I see that the newest version of ServerSide and FirebaseDestination use the new repository URL. I guess that the other artefacts will be updated in the same way with their next release?

ahakimsaid commented 2 months ago

hi @MGaetan89, yes, indeed, other artifacts will be updated in their next releases

MGaetan89 commented 2 months ago

Thanks, I'm closing this issue then 🙂