Skip to content

Instantly share code, notes, and snippets.

@brunokrebs
Last active March 10, 2016 13:42
Show Gist options
  • Save brunokrebs/3de0f7b81694e31d2f4d to your computer and use it in GitHub Desktop.
Save brunokrebs/3de0f7b81694e31d2f4d to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<!-- ... other project's definition ... -->
<dependencies>
<!-- ... spring-boot-starter-web and spring-boot-starter-actuator deps ... -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
</dependencies>
<!-- ... other project's definition ... -->
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment