문제점
github를 통해 진행하던 프로젝트를 다른 환경에서 작업을 실행하려니 에러가 발생하고 실행이 되지 않았다.
문제 파악
에러 메세지를 확인해보면
Description Resource Path Location Type The supplied phased action failed with an exception. Could not resolve all dependencies for configuration ':compileClasspath'. Failed to calculate the value of task ':compileJava' property 'javaCompiler'. Cannot find a Java installation on your machine matching this tasks requirements: {languageVersion=17, vendor=any vendor, implementation=vendor-specific} for WINDOWS on x86_64. No locally installed toolchains match and toolchain download repositories have not been configured. DevSquard line 0 Gradle Error Marker
음... 대충 자바 17 버전 경로가 잡히지 않아서 에러가 발생한다.... 라는 느낌같다.
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
gradle을 확인해보면 프로젝트는 자바 17을 기반으로 돌아가는 것이 확인된다.
우선 컴퓨터에 설치된 자바 버전을 확인해보자
$ java --version
java 22.0.1 2024-04-16
Java(TM) SE Runtime Environment (build 22.0.1+8-16)
Java HotSpot(TM) 64-Bit Server VM (build 22.0.1+8-16, mixed mode, sharing)
난 22버전이 기본적으로 설치되어 있었고 다른 버전이 설치되어 있어도 우선적으로 22버전이 잡히는 것 같다.
해결
우선 17버전이 설치되어 있지 않다면 먼저 설치해준다.
Java Archive Downloads - Java SE 17
WARNING: Older versions of the JDK are provided to help developers debug issues in older systems. They are not updated with the latest security patches and are not recommended for use in production. For production use Oracle recommends downloading the late
www.oracle.com
위 사이트에서 Windows x64 MSI Installer << 를 받아준다.
이후 설치된 경로를 확인하고 [ 시스템 환경 변수 편집 ] 을 열어준다.
환경 변수를 눌러준다.
이후 시스템 변수에 새로 만들기를 눌러서 아래와 같이 만들어줍니다. 아래는 예시이다. 변수 값은 조금 전 jdk17을 설치한 경로를 입력해 준다.
변수 이름 : JAVA_HOME
변수 값 : C:\Program Files\Java\jdk-17
이후 path를 찾아서 편집을 눌러준다.
새로 만들기를 누르고 %JAVA_HOME%\bin << 와 같이 경로를 추가해주고 가장 위로 올려준다.
이후 확인을 누르고 터미널을 새로 연뒤 버전을 확인해보면
$ java --version
java 17.0.11 2024-04-16 LTS
Java(TM) SE Runtime Environment (build 17.0.11+7-LTS-207)
Java HotSpot(TM) 64-Bit Server VM (build 17.0.11+7-LTS-207, mixed mode, sharing)
이와 같이 17버전이 기본으로 잡히는 것을 볼 수 있다.
이후 IDE를 재시작 해보면 17버전이 잡혀 에러가 사라진 것을 볼 수 있다.