Skip to content

Instantly share code, notes, and snippets.

@aarshtalati
Created March 27, 2018 11:23
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 aarshtalati/345ae1d601e376675724f9cd9e4834c2 to your computer and use it in GitHub Desktop.
Save aarshtalati/345ae1d601e376675724f9cd9e4834c2 to your computer and use it in GitHub Desktop.
JPA and MySQL dependencies for SpringBoot RESTful Application in docker
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment