반응형
Maven으로 처음 프로젝트를 만들고 빌드를 하려고하면 java: Compilation failed: internal java compiler error 이러한 에러가 뜰 것이다.
원인은 Maven 은 처음 프로젝트를 만들게되면 build를 1.5기준으로 맞춘다.
해결방법은 아래 코드를 삽입해주면 된다.
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
반응형
'컴퓨터공학 기초 > 기초개념+TIP' 카테고리의 다른 글
JAVA 환경변수를 설정했는데 java 명령어가 안 먹힐 때 (0) | 2020.12.29 |
---|---|
[Maven] maven unmappable character for encoding UTF8 (0) | 2020.12.12 |
[웹사이트] xss 방지 (0) | 2020.04.30 |
[기초개념] Session Time설정에 따른 장단점 (0) | 2020.04.11 |
[docker] the input device is not a TTY. If you are using mintty, try prefixing the command with 'winpty' (0) | 2020.04.06 |
댓글