Skip to content

Instantly share code, notes, and snippets.

@LenarBad
Created December 22, 2017 22:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LenarBad/35d2c16350b3d87470354bdc1f53e591 to your computer and use it in GitHub Desktop.
Save LenarBad/35d2c16350b3d87470354bdc1f53e591 to your computer and use it in GitHub Desktop.
How to exclude Tomcat from Spring Boot in Maven
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
@LenarBad
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment