File tree 3 files changed +16
-0
lines changed
3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 153
153
<artifactId >swagger-annotations</artifactId >
154
154
<version >2.2.15</version >
155
155
</dependency >
156
+ <dependency >
157
+ <groupId >org.postgresql</groupId >
158
+ <artifactId >postgresql</artifactId >
159
+ <version >42.7.3</version >
160
+ </dependency >
156
161
</dependencies >
157
162
</dependencyManagement >
158
163
Original file line number Diff line number Diff line change 54
54
<artifactId >h2</artifactId >
55
55
<scope >runtime</scope >
56
56
</dependency >
57
+ <dependency >
58
+ <groupId >org.postgresql</groupId >
59
+ <artifactId >postgresql</artifactId >
60
+ <scope >runtime</scope >
61
+ </dependency >
57
62
<dependency >
58
63
<groupId >${project.groupId} </groupId >
59
64
<artifactId >jmh-data-model</artifactId >
Original file line number Diff line number Diff line change
1
+ spring.datasource.url =jdbc:postgresql://${POSTGRES_HOST:localhost}:${POSTGRES_PORT:2132}/${SPRING_DATASOURCE_DATABASE:benchscape}?createDatabaseIfNotExist=true
2
+ spring.datasource.username =${SPRING_DATASOURCE_USERNAME:benchscape}
3
+ spring.datasource.password =${SPRING_DATASOURCE_PASSWORD:benchscape}
4
+ # TODO Replace by liquibase or flyway
5
+ spring.jpa.hibernate.ddl-auto =create
6
+ spring.jpa.properties.hibernate.dialect =org.hibernate.dialect.PostgreSQLDialect
You can’t perform that action at this time.
0 commit comments