Java-OCA-OCPP
Java-OCA-OCPP copied to clipboard
Your Maven Artifact Ids are "common" and "v1_6" - should be more distinct
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?
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
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.