V8.2.3

  • #710 Fix class cast Exception on discriminator
  • #720 duplicate column name mapped to same property instead of different target

Reminder from 8.0.0

  • Intellij use wrong classifier Rewrote the release process to remove the classifier as a way to deal with different jre version. Instead change the artifactId for jre6 and jre9 so that the full chain is set by the root import.

The dependencies are now included with the following :

Java 8, 9, 10 , 11 no module-info

<dependency>
    <groupId>org.simpleflatmapper</groupId>
    <artifactId>sfm-jdbc</artifactId>
    <version>8.2.3</version>
</dependency>

Java 6, 7

<dependency>
    <groupId>org.simpleflatmapper</groupId>
    <artifactId>sfm-jdbc-jre6</artifactId>
    <version>8.2.3</version>
</dependency>

Java 9, 10 , 11 with module-info

<dependency>
    <groupId>org.simpleflatmapper</groupId>
    <artifactId>sfm-jdbc-jre9</artifactId>
    <version>8.2.3</version>
</dependency>