Skip to content

Commit

Permalink
➕ add postgresql denpendicy
Browse files Browse the repository at this point in the history
  • Loading branch information
sanshengshui committed May 2, 2019
1 parent 5bca055 commit 5aced94
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
8 changes: 8 additions & 0 deletions IOT-Guide-MultiTenant/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@
<artifactId>spring-boot-starter-web</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
</dependencies>


Expand Down
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
<mysql.version>5.1.43</mysql.version>
<jjwt.version>0.9.0</jjwt.version>
<commons-lang3.version>3.4</commons-lang3.version>
<postgresql.version>42.2.5</postgresql.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -199,6 +200,11 @@
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgresql.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit 5aced94

Please sign in to comment.