chonton / exists-maven-plugin

Check if artifact exists in remote maven repository
Apache License 2.0
47 stars 17 forks source link

Wrong path in RemoteExistsMojo log printout #51

Open croister opened 5 months ago

croister commented 5 months ago

The log printout in RemoteExistsMojo is incorrect, the "/" between the "repositoryBase" and "path" variables is missing. This goes for both instances of "repositoryBase + path" in that file.

Example Expected printout: Checking for artifact at https://example.com/artifactory/project/com/example/myproj/com.example.myproj/0.1.0/com.example.myproj-0.1.0.jar Actual printout: Checking for artifact at https://example.com/artifactory/projectcom/example/myproj/com.example.myproj/0.1.0/com.example.myproj-0.1.0.jar

It is just a minor issue, I believe it fetches the correct URL. But it is a little bit inconvenient and decreases the confidence in that the plugin did the correct check.