0

Is there a common way of finding out which version of a Maven artifact is compiled against which Java version?

It always seems to take way too long to

  1. Work out that it is a jvm version issue
  2. Find out which jvm version the current aritfact uses
  3. Track back through the versions of the artifact to find one that works

If there is not a common mechanism, do some artifacts adopt a naming convention?

OldCurmudgeon
  • 64,482
  • 16
  • 119
  • 213

1 Answers1

2

There is a standard way of naming, using the classifier attribute of an artifact.

Building same project in Maven with different artifactid (based on JDK used)

Community
  • 1
  • 1
Nikola Yovchev
  • 9,498
  • 4
  • 46
  • 72