<project.....>
.......
<build>
<finalName>My project</finalName>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArgument>-Xlint:all</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
</plugins>
</build>
</project>
Maven pom 파일에서 저 설정의 쓰임이 아직도 정확히 모르겠으나
설명에는 시스템과 다른 버전으로 컴파일 할 때 이 설정을 이용할 수 있다고 했다.
또한, 실질적으로 파악한 것은
컴파일 시, 디렉토리 구조 src/main/resources 하위에 있는 파일을 classpath 로 자동으로 넣어준다.
컴파일 하고 빌드할 때 일어나는 것들을 편리하게 처리해 주는 기능을 제공하고 있는 듯하다.
'Dev > Orvercome 3sec memory' 카테고리의 다른 글
인텔리제이에서 DB 스키마 unknown 으로 표시 될 때 (0) | 2022.04.05 |
---|---|
자바스크립트 특정 시간 설정 및 현재시간 얻어오기 (0) | 2019.10.31 |
우분투 부팅USB 만들기 설명 페이지 링크 (0) | 2017.04.30 |
Mac OS X 환경변수 설정 (0) | 2016.09.03 |
JPA CriteriaQuery.multiselect() (0) | 2015.11.10 |