vladmihalcea / hypersistence-optimizer

Hypersistence Optimizer allows you to get the most out of JPA and Hibernate. By scanning your application configuration and mappings, Hypersistence Optimizer can tell you what changes you need to do to speed up your data access layer.
https://vladmihalcea.com/hypersistence-optimizer/
Apache License 2.0
306 stars 43 forks source link

Add classifiers for jre6 and jakarta dependencies #204

Closed vladmihalcea closed 1 year ago

vladmihalcea commented 1 year ago

Currently, the Java 6 and Jakarta dependencies use a version suffix, but a Maven classifier is a much better approach.

With this change in place, this is how the Jakarta-related dependency will be set:

<dependency>
    <groupId>io.hypersistence</groupId>
    <artifactId>hypersistence-optimizer</artifactId>
    <version>${hypersistence-optimizer.version}</version>
    <classifier>jakarta</classifier>
</dependency>
vladmihalcea commented 1 year ago

Fixed.