Skip to content

Commit

Permalink
Merge pull request #35 from nehbehl/patch-23
Browse files Browse the repository at this point in the history
Update pom.xml
  • Loading branch information
SudKul authored Nov 18, 2024
2 parents 992b2b4 + 357f8d2 commit fcd8f88
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions udacity-jwdnd-c1-l5-final-review-solution-master/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.0.RELEASE</version>
<version>3.3.5</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.udacity.jwdnd.c1</groupId>
Expand All @@ -15,7 +15,7 @@
<description>Demo project for Spring Boot</description>

<properties>
<java.version>14</java.version>
<java.version>21</java.version>
</properties>

<dependencies>
Expand All @@ -34,7 +34,7 @@
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.1.2</version>
<version>3.0.3</version>
</dependency>

<dependency>
Expand All @@ -48,6 +48,16 @@
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
Expand All @@ -67,9 +77,9 @@
<dependency>
<groupId>io.github.bonigarcia</groupId>
<artifactId>webdrivermanager</artifactId>
<version>3.8.1</version>
<version>5.9.2</version>
<scope>test</scope>
</dependency>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
Expand Down

0 comments on commit fcd8f88

Please sign in to comment.