File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >org.springframework.boot</groupId >
7
7
<artifactId >spring-boot-starter-parent</artifactId >
8
- <version >2.2.2.RELEASE </version >
8
+ <version >3.3.5 </version >
9
9
<relativePath /> <!-- lookup parent from repository -->
10
10
</parent >
11
11
<groupId >com.udacity.jdnd.course3</groupId >
15
15
<description >Starter code for Critter Chronologer project</description >
16
16
17
17
<properties >
18
- <java .version>1.8 </java .version>
18
+ <java .version>21 </java .version>
19
19
</properties >
20
20
21
21
<dependencies >
35
35
</dependency >
36
36
37
37
<dependency >
38
- <groupId >mysql</groupId >
39
- <artifactId >mysql-connector-java</artifactId >
38
+ <groupId >org.postgresql</groupId >
39
+ <artifactId >postgresql</artifactId >
40
+ <scope >runtime</scope >
41
+ </dependency >
42
+ <dependency >
43
+ <groupId >com.h2database</groupId >
44
+ <artifactId >h2</artifactId >
40
45
<scope >runtime</scope >
41
46
</dependency >
42
47
Original file line number Diff line number Diff line change 2
2
server.port =8082
3
3
4
4
# Data Source Setup
5
- # Note: Users must create a mysql db that they will reference here, create a user that has access to it on localhost
5
+ # Note: Users must create a H2 db that they will reference here, create a user that has access to it on localhost
6
6
# and provide the credentials below to access it
7
7
8
8
# uncomment the below lines to view sql output in console
You can’t perform that action at this time.
0 commit comments