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 | 29 | 30 | 31 |
Tags
- lsof
- ssh
- maVen
- context
- Source
- IntelliJ
- tomcat
- grep
- vscode
- bash
- Windows
- GIT
- import
- 단축키
- port
- JavaScript
- plugin
- netsh
- Quartz
- Eclipse
- resource
- xargs
- web.xml
- find
- 줄바꿈 문자
- VirtualBox
- Mac
- profile
- 네트워크
- Windows 10
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 |