Java-OCA-OCPP icon indicating copy to clipboard operation
Java-OCA-OCPP copied to clipboard

Your Maven Artifact Ids are "common" and "v1_6" - should be more distinct

Open in-fke opened this issue 3 years ago • 2 comments

Imagine the Jars being packaged into a .war, their names would be:

WEB-INF/lib/common-1.0.jar
WEB-INF/lib/v1_6-1.0.1.jar

= not very distinct with regard to other jar files. Maybe artifactIds like "oca-ocpp-common" and "oca-ocpp-v1_6" would make more sense?

in-fke avatar Jan 19 '22 22:01 in-fke

Hi @in-fke,

Sorry for the slow reply.

You make an excellent point. I will look into to rename artifacts, once I have the time.

Thanks.

Sincerely, Thomas

TVolden avatar Feb 26 '22 17:02 TVolden

Imagine the Jars being packaged into a .war, their names would be:

For maven-war-plugin and also other WAR archive creators elsewhere you usually can specify artifact naming pattern. What you see is an $artifactId-$version.$packaging (in maven terms) but nothing holds you from changing it into $groupId.$artifactId-$version.$packaging.

splatch avatar Apr 14 '22 17:04 splatch