Created
March 11, 2016 15:20
-
-
Save Cameron-C-Chapman/7db4f0cfaa0bf59a393e to your computer and use it in GitHub Desktop.
pom entry for including spring boot dependencies when you need to use something else as the parent pom
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependencyManagement> | |
<dependencies> | |
<dependency> | |
<!-- Import dependency management from Spring Boot --> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-dependencies</artifactId> | |
<version>1.3.1.RELEASE</version> | |
<type>pom</type> | |
<scope>import</scope> | |
</dependency> | |
</dependencies> | |
</dependencyManagement> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment