오래만에 더 이상 개발하지 않고 유지 관리 중인 Hystrix Dashboard를 실행하려다 아래와 같은 오류가 발생했습니다. ]$ ./gradlew jettyRun 오류: 기본 클래스 org.gradle.wrapper.GradleWrapperMain을(를) 찾거나 로드할 수 없습니다. gradle 프로젝트인데 gradle-wrapper.jar 파일이 보이지 않습니다. ]$ ls -al gradle/wrapper/ gradle-wrapper.properties 아래와 같이 gradle wrap 명령어를 실행합니다. gradle이 설치되어 있지 않으면 brew로 설치하세요 ]$ brew install gradle ]$ gradle wrap This version of the JMH Gradle plugin..
maven만 사용했더니 gradle도 서서히 잊혀지네요...^^;; 아래와 같은 간단한 명령을 실행합니다. ./gradlew clean build lombok을 사용하는데 log 변수에 error: cannot find symbol ..... log.debug("service"); ^ symbol: variable log location: class UserService 3 errors FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':compileJava'. > Compilation failed; see the compiler error output for details. lombok 설정이 누락..