maven 빌드 시 tld 파일 jar에 포함시키기
개발툴2014. 5. 26. 14:05
태그 라이브러리 파일을 jar 파일에 포함시키기 위한 설정에 대해서 정리한다.
메이븐 project의 src/main/resources 디렉토리 하위에 META-INF 디렉토리를 생성한 후 jar에 포함시키고자 하는 tld 파일을 모두 추가해 준다.
위와 같이 tld 파일을 추가한 후 mvn package goal을 실행하면 tld 파일이 jar파일에 포함되어진다.
다음과 같이 포함시킬 파일과 포함시키지 말아야 할 파일을 구분할 수도 있다.
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.tld</include>
</includes>
<excludes>
<exclude>**/*.xml</exclude>
<exclude>**/*.properties</exclude>
</excludes>
</resource>
</resources>
</build>
'개발툴' 카테고리의 다른 글
이클립스 Open Resource 창에서 특정 파일 및 폴더 제외 방법 (473) | 2014.06.27 |
---|---|
maven 빌드 시 war 파일에 buildNumber 추가 (0) | 2014.06.26 |
Eclipse Deployment Assembly 설정 주의사항 (메이븐 프로젝트인 경우) (0) | 2014.06.19 |
third party library 사설 리포지토리 없이 dependency 추가하기 (1) | 2014.06.02 |
오류 Cannot change version of project facet Dynamic Web Module to 2.5. (17) | 2014.05.21 |
[이클립스] jar 파일안에 있는 .class 파일 쉽게 찾기 (0) | 2014.05.16 |
크롬 개발자 도구 - Console view에서의 search 기능 (2) | 2014.03.24 |
eclipse Open Resource 설정 (0) | 2014.03.15 |
댓글()