Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- grep
- port
- Quartz
- import
- xargs
- IntelliJ
- tomcat
- Eclipse
- find
- web.xml
- netsh
- maVen
- lsof
- Source
- Windows 10
- resource
- 단축키
- 줄바꿈 문자
- vscode
- bash
- profile
- Windows
- GIT
- plugin
- Mac
- JavaScript
- ssh
- VirtualBox
- context
- 네트워크
Archives
- Today
- Total
develog
[gradle] tomcat dependency exclude 본문
방법1
implementation ('org.springframework.boot:spring-boot-starter-web') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
}
방법2
implementation ('org.springframework.boot:spring-boot-starter-web') {
exclude module: 'spring-boot-starter-tomcat'
}
'Dev > gradle' 카테고리의 다른 글
[gradle] local jar dependency 추가 (0) | 2021.02.16 |
---|---|
[gradle] command (0) | 2020.08.06 |
build.gradle (0) | 2020.08.04 |
[gradle] p6spy (0) | 2020.02.08 |
[java] gradle (0) | 2019.11.25 |
Comments