Skip to content

Commit

Permalink
Migrate to jakarta packages
Browse files Browse the repository at this point in the history
  • Loading branch information
tboychuk committed Oct 17, 2023
1 parent c029984 commit a0c544a
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import lombok.NoArgsConstructor;
import lombok.Setter;

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

/**
* TODO: you're job is to implement mapping for JPA entity {@link Movie}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import lombok.NoArgsConstructor;
import lombok.Setter;

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

/**
* todo:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import lombok.NoArgsConstructor;
import lombok.Setter;

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

/**
* todo:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
package com.bobocode.model;

import com.bobocode.util.ExerciseNotCompletedException;
import jakarta.persistence.*;
import lombok.*;

import javax.persistence.*;
import java.util.ArrayList;
import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import lombok.NoArgsConstructor;
import lombok.Setter;

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

/**
* todo:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import com.bobocode.util.ExerciseNotCompletedException;
import lombok.*;

import javax.persistence.*;
import jakarta.persistence.*;
import java.util.ArrayList;
import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import lombok.NoArgsConstructor;
import lombok.Setter;

import javax.persistence.*;
import jakarta.persistence.*;
import java.time.LocalDateTime;

/**
Expand Down

0 comments on commit a0c544a

Please sign in to comment.