Skip to content

Commit 6f8c95c

Browse files
removing postgresql (oops), updating to latest Spring Boot Version
1 parent e6180d4 commit 6f8c95c

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
# Spring Boot Web Application
2-
This repository has the project files for a tutorial series on Spring Boot available from by website at [Spring Framework Guru](https://springframework.guru)
2+
This repository has the project files for a tutorial series on Spring Boot available from by website at [Spring Framework Guru](https://springframework.guru)
3+
4+
## Checkout the full tutorial here!
5+
[Spring Boot - making Spring Fun again!](https://springframework.guru/spring-boot-web-application-part-1-spring-initializr/)

pom.xml

+1-6
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>1.4.2.RELEASE</version>
17+
<version>1.5.3.RELEASE</version>
1818
<relativePath/> <!-- lookup parent from repository -->
1919
</parent>
2020

@@ -56,11 +56,6 @@
5656
<artifactId>h2</artifactId>
5757
<scope>compile</scope>
5858
</dependency>
59-
<dependency>
60-
<groupId>org.postgresql</groupId>
61-
<artifactId>postgresql</artifactId>
62-
<version>9.4-1206-jdbc42</version>
63-
</dependency>
6459
<dependency>
6560
<groupId>org.springframework.boot</groupId>
6661
<artifactId>spring-boot-starter-test</artifactId>
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
spring.datasource.url= jdbc:postgresql://localhost:5432/springbootdb
2-
spring.datasource.username=postgres
3-
spring.datasource.password=postgres@123
4-
51
spring.jpa.hibernate.ddl-auto=create-drop

0 commit comments

Comments
 (0)