kr11 commented on pull request #2318: URL: https://github.com/apache/iotdb/pull/2318#issuecomment-750712027
Hi @sullis, the failure in Java 15 is due to IoTDB using a too old version of Felix(4.2.1). It has been reported at [FELIX-6259](https://issues.apache.org/jira/browse/FELIX-6259). A suggestion: upgrade Felix to at least `5.1.1` or higher at `$IoTDB_HOME/pom.xml:138` ```xml ... <metrics.version>3.2.6</metrics.version> <javax.xml.bind.version>2.4.0-b180725.0427</javax.xml.bind.version> <felix.version>4.2.1</felix.version> <!-- upgrade to 5.1.1 or higher--> ... ``` I have passed the compile in my Mac OS with Java 15. PS: the bug of Felix is caused by using an old version of bnd ([bnd-3903](https://github.com/bndtools/bnd/issues/3903)) . ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
