Skip to content

Commit

Permalink
Changes to upgrade to springboot 3.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
nehbehl authored Dec 5, 2024
1 parent ea7c4e6 commit 59a4a21
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion excercise 2/exercises/solution/addressbook/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.3</version>
<version>3.3.5</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<dependencies>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package udacity.com.model;

import javax.persistence.*;
import jakarta.persistence.*;

@Entity
@Table(name = "addressbook")
Expand Down
2 changes: 1 addition & 1 deletion excercise 2/exercises/starter/addressbook/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.3</version>
<version>3.3.5</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<dependencies>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package udacity.com.model;

import javax.persistence.*;
import jakarta.persistence.*;

@Entity
@Table(name = "addressbook")
Expand Down

0 comments on commit 59a4a21

Please sign in to comment.