1. jdk 1.8버전으로 업데이트 한다 .
2. 메이븐 세팅 파일인 users.xml의 profile을 추가해준다.
<profiles>
<profile>
<id>maven-home</id>
<repositories>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
<releases>
<enabled>true</enabled>
<checksumPolicy>warn</checksumPolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>http://repo1.maven.org/maven2</url>
</pluginRepository>
</pluginRepositories>
</profile>
3. 사용하는 버전이 jdk 1.7이라면 자바 런타임 설정 시 mvn -Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2 를 추가 해주어야 한다. 나는 해당 프로젝트 pom.xml 있는 디렉토리에서 위의 argument을 추가하고 실행하니깐 무리없이 빌드가 된다.
부제 :
아니 jdk 1.8 이용료가 일년에 얼마나 한다고 공공기관에서 아직도 1.5, 1.6을 쓰고 있냐고요 ~
'날리지 > 언어' 카테고리의 다른 글
함수형 프로그래머가 되기 위한 ... ... (1) (0) | 2019.09.17 |
---|---|
스프링프레임웍 - Spring Security(1) : 기본 설정 (0) | 2019.09.13 |
docker에 설치된 mysql에 접속시 에러가 발생 시 해결 법 (0) | 2019.08.23 |
java 와 톰캣 버전 싱크 (0) | 2019.08.20 |
html에서 javax.servlet.http.HttpServlet을 자바 빌드 경로에서 찾아주지 못할 때 (0) | 2019.08.20 |