To convert ant to maven, I am constructing pom.xml programmatically based on list of jars. Few jars like log4j are having pom.xml and pom.properties are found with in the jar. Some other jars like dom4j not having pom.xml and pom.properties. how to get groupid, artifactid and version for the dom4j.
I am greateful for the suggestions.
I had the same problem two years ago. I had hundreds of jars that needed to be matched to Maven coordinates.
My procedure was roughly as follows:
I actually spend many days doing just this.