티스토리 뷰
* 개요
Build path 에서 1.8 로 바꾸고 Maven update 하면 다시 1.6으로 바뀌는 현상의 해결
- pom.xml 의 java-version 프로퍼티 수정
<properties>
<java-version>1.8</java-version>
...
- org.apache.maven.plugins 의 버전 고쳐야 함.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArgument>-Xlint:all</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
'SW개발' 카테고리의 다른 글
자바 환경변수 가져오기 등 (0) | 2018.06.06 |
---|---|
Cannot change version of project facet Dynamic Web Module to 2.5 (0) | 2018.05.03 |
Eclispe / Could not transfer artifact org.apache.maven.plugins:maven-compiler-plugin:pom:3.5.1 from/to central (0) | 2018.04.29 |
모바일용 페이지 개발 (0) | 2018.02.23 |
mahout 설치 (0) | 2018.01.23 |