IDE는 intelliJ를 사용하고 있고, SpringBoot, Gradle, Java 17로 프로젝트 구성했다.
intelliJ Build Tools의 Gradle의 Build And Run은 intelliJ로 설정을 해서 그냥 실행을 시켰을 때는 문제가 발생하지 않았다.
Gradle의 verification -> test를 실행하면 문제가 발생했다.
에러 메시지
에러 메시지의 일부를 가져와서 붙여 넣어보면 잘되는 것들이 안된다고 하고 찾을 수 없다고 한다..
> Task :compileJava FAILED
Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0.
You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.
FAILURE: Build failed with an exception.
* What went wrong: Execution failed for task ':compileJava'.
> Compilation failed; see the compiler error output for details.
* Try: > Run with --info option to get more log output.
> Run with --scan to get full insights.
BUILD FAILED in 4s 1 actionable task: 1 executed
symbol: method getContent()
required: no arguments
found: String,int
reason: actual and formal argument lists differ in length
해결 방법
에러를 해결하기 위해서 여러 가지를 시도해보았는데, 마지막 시도가 먹혔던건 build.gradle 파일에 설정을 추가한 것이다.
dependencies 부분에 annotationProcessor('org.projectlombok:lombok:1.18.24')를 추가했더니
gralde Task에 있는 test가 정상적으로 실행이 되었다.
호옥시 build.gradle repositories에 mavenCentral()말고 jCenter()가 있다면 이제는 지원하지 않으니 설정을 지우는 걸 추천한다.
맥북에서 터미널 명령어로 gradle 명령어를 찾을 수 없다면
homebrew를 통해서 gradle 설치를 하시기 바랍니다~
homrebrew가 설치되어있다면 아래 명령어를 통해서 설치 가능!
brew install gradle // 설치 명령어
gradle --version // 버전 확인 명령어
gradle wrapper // 프로젝트 루트 디렉터리에 gradle wrapper 생성(gradle-wrapper.properties 파일등)