ContributionsMost RecentMost LikesSolutionsRe: ready-api-maven-plugin not working in java jdk 11 Will it work in jdk 17 then? That is the next long term support version? Kind Regards, Marcus Re: ready-api-maven-plugin not working in java jdk 11 Hi Rao, thanks for your replay. Since Java 11 is listed LTS (Long-Term-Support) version is it possible to have this fix included in JDK 11 also? Kind Regards, Marcus Re: ready-api-maven-plugin not working in java jdk 11 I emailed smart bear support and they suggested me to join this forum since I am not a customer yet. This instruction https://support.smartbear.com/readyapi/docs/integrations/junit.html is from march 2021. Java 11 has been around for quite a while now. Regards, Marcus ready-api-maven-plugin not working in java jdk 11 Hi, I followed this user guide: https://support.smartbear.com/readyapi/docs/integrations/junit.html put it in my pom.xml and it does not work. <repositories> <repository> <id>SmartBearPluginRepository</id> <url>http://smartbearsoftware.com/repository/maven2</url> </repository> </repositories> <dependencies> <dependency> <groupId>com.smartbear</groupId> <artifactId>ready-api-maven-plugin</artifactId> <version>2.7.0</version> <exclusions> <exclusion> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.olap4j</groupId> <artifactId>olap4j</artifactId> <version>1.2.0</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.9.8</version> </dependency> </dependencies> I get the following error: Fatal error compiling: Illegal char <> at index 7: ../lib/.jar -> I use java 11. If I revert to java 8 it works though. But I don't want to downgrade java.