Skip to content
Advertisement

Gradle project in eclipse builds fine but java files show compilation error

This is my first gradle project. I am using Buildship eclipse plugin for gradle. In my build.gradle file, I have below plugins applied –

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'war'
apply plugin: 'com.bmuschko.tomcat'

All the relevant dependencies are defined as compile as below –

.
.
compile ("org.hibernate:hibernate-entitymanager:${hibernateVer}")
compile ("org.hibernate:hibernate-core:${hibernateVer}")
compile ("org.hibernate:hibernate-validator:${hibernateValVer}")

compile ("org.slf4j:slf4j-api:${slf4jVer}")
compile ("org.slf4j:slf4j-log4j12:${slf4jVer}")
.
.

The project builds and runs successfully using tomcatRun command as well. But the eclipse is showing compilation errors on my imports in java files, saying that the dependencies can not be resolved.

I tried Project->Clean and then refresh, but still stuck. What can i do to remove these compilation errors? Thanks in advance.

Advertisement

Answer

Removing the project from workspace and importing it again as a gradle project fixed the issue for me. Maybe somewhere down the path I have done something that has removed the “gradle” nature of the project.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement