Etc.
- MS Word Footnote Issue 2020.11.29
- Maven에서 jar에 resource 파일 추가하기 2018.07.10
- The required Server component failed to start so Tomcat is unable to start. 2018.07.09
MS Word Footnote Issue
2020. 11. 29. 01:13
Maven에서 jar에 resource 파일 추가하기
2018. 7. 10. 11:28
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <build> <sourceDirectory>${basedir}/src/main/java</sourceDirectory> <resources> <resource> <directory>${basedir}/src/main/resources</directory> </resource> </resources> <plugins> <plugin> ... </plugin> </plugins> </build> | cs |
참고: http://wiki.gurubee.net/pages/viewpage.action?pageId=2457625
'Etc.' 카테고리의 다른 글
MS Word Footnote Issue (0) | 2020.11.29 |
---|---|
The required Server component failed to start so Tomcat is unable to start. (0) | 2018.07.09 |
프로젝트의 tomcat dependency를 servlet 2.5에서 3.0 이상으로 변경한다.
'Etc.' 카테고리의 다른 글
MS Word Footnote Issue (0) | 2020.11.29 |
---|---|
Maven에서 jar에 resource 파일 추가하기 (0) | 2018.07.10 |