Couchbase lite java + OpenJDK 12

Hy

I’d like compile my application with OpenJDK 12
I’ve this error
error: the unnamed module reads package com.couchbase.lite.util from both couchbase.lite.java and couchbase.lite.java.core

My module-info.java contains
requires couchbase.lite.java.core;
requires couchbase.lite.java.sqlite.custom;

API : couchbase-lite-java 1.4.4
OS : Linux
IDE : Intellij
Java: OpenJDK 12

Somebody can help me please
Thank’s

I’m sorry, Sylvain,

We are not extending CBL 1.x , and this moment and CBLite 2.x supports only Android. Neither environment supports Java 12
You may be able to work around this by specifying:

   compileOptions {
       targetCompatibility 1.8
       sourceCompatibility 1.8
   }

… or its equivalent if you are using a build system other than Gradle.