spring-boot-maven-plugin

How to add a dependency to a Spring Boot Jar in another project?

一世执手 提交于 2019-11-26 00:58:55
问题 I have a Spring Boot application and I have created a Jar out of that. Following is my pom.xml : <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> <dependency>