Browse Source

Add missing Maven imports for SQL

Signed-off-by: Pekka Helenius <fincer89@hotmail.com>
v0.0.4-alpha
Pekka Helenius 4 years ago
parent
commit
d6d29311de
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      bookstore/pom.xml

+ 11
- 0
bookstore/pom.xml View File

@ -72,6 +72,17 @@
<artifactId>thymeleaf-extras-springsecurity5</artifactId> <artifactId>thymeleaf-extras-springsecurity5</artifactId>
</dependency> </dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies> </dependencies>
<build> <build>


Loading…
Cancel
Save