본문 바로가기

날리지/언어

Eclipse 에서 gradle dependency가 안 보일 때.

eclipse에서 gradle dependency가 안 보일 때,.


You should use the gradle eclipse plugin. Add this to your build.gradle file:

apply plugin: "eclipse"

This will add eclipse related tasks to your build. By executing

gradlew cleanEclipse eclipse


그 다음

right-click the build.gradle file -> Gradle -> Refresh Dependencies.


reference: https://stackoverflow.com/questions/38171471/eclipse-not-recognizing-gradle-dependencies/38171826