I am trying to use spring boot with java 9 and gradle. I am unable to run my simple code, I get the below mentioned error :-
Information:java: Errors occurre
Excluding the transitive dependency made it work and adjusting the module-info.java too!!!
compile("org.springframework.boot:spring-boot-starter:1.5.3.RELEASE") {
exclude group: 'commons-logging', module: 'commons-logging'
}
compile("org.springframework.boot:spring-boot-starter-web:1.5.3.RELEASE"){
exclude group: 'commons-logging', module: 'commons-logging'
}