Skip to content

Commit 070c0dc

Browse files
POM modification
1 parent 216cdcf commit 070c0dc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

backend/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@
4141
<groupId>org.springframework.boot</groupId>
4242
<artifactId>spring-boot-starter-data-jpa</artifactId>
4343
</dependency>
44-
<!--dependency>
44+
<dependency>
4545
<groupId>org.postgresql</groupId>
4646
<artifactId>postgresql</artifactId>
47-
</dependency-->
48-
<dependency>
47+
</dependency>
48+
<!--dependency>
4949
<groupId>com.h2database</groupId>
5050
<artifactId>h2</artifactId>
5151
<version>2.1.210</version>
52-
</dependency>
52+
</dependency-->
5353
<dependency>
5454
<groupId>org.springframework.boot</groupId>
5555
<artifactId>spring-boot-starter-test</artifactId>

backend/src/main/resources/application.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
spring.mustache.suffix=.html
22
logging.level.org.springframework.web=DEBUG
33
spring.h2.console.enabled=true
4-
spring.datasource.url=jdbc:h2:mem:testdb
4+
#spring.datasource.url=jdbc:h2:mem:testdb
55

66

77
spring.jpa.properties.hibernate.format_sql=true
@@ -17,7 +17,7 @@ server.ssl.key-store= classpath:keystore.jks
1717
server.ssl.key-store-password= password
1818
server.ssl.key-password= secret
1919

20-
#spring.datasource.url=jdbc:postgresql://localhost/posts
20+
spring.datasource.url=jdbc:postgresql://localhost/posts
2121
spring.datasource.username=postgres
2222
spring.datasource.password=password
2323
spring.jpa.hibernate.ddl-auto=create-drop

0 commit comments

Comments
 (0)