Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Cameron-C-Chapman/7db4f0cfaa0bf59a393e to your computer and use it in GitHub Desktop.
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
<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