TWCable / gradle-plugin-scr

Makes it easier to work for with the Felix SCR annotations for Gradle
Apache License 2.0
4 stars 2 forks source link

com.twcable.gradle:gradle-plugin-scr:1.2.0 fails in java 11 #10

Open vijayselvas opened 3 years ago

vijayselvas commented 3 years ago

We are using Gradle 4x with the below dependencies to build our AEM project and it's working fine with java 8.

buildscript { dependencies { classpath "com.twcable.gradle:gradle-plugin-scr:1.2.0" } }

dependencies { compile group: 'org.apache.felix', name: 'org.apache.felix.http.servlet-api', version: '1.1.0' compile group: 'org.apache.felix', name: 'org.apache.felix.scr.annotations', version: '1.9.8' }

Now, We are trying to upgrade to Java 11 where it's failing with the Felix annotations/dependencies. Do we have any workaround to make Felix work in Java 11?