Skip to content

Commit

Permalink
Spring boot 3.0.0 version update
Browse files Browse the repository at this point in the history
  • Loading branch information
Taner TEMEL committed Dec 5, 2022
1 parent c67a2e2 commit 5b705dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
package com.temelt.employee.model;

import com.temelt.common.Scenario;
import javax.validation.constraints.NotNull;

public class SearchEmployeeRequest implements Scenario {
private String id;

public SearchEmployeeRequest(@NotNull final String id) {
public SearchEmployeeRequest(final String id) {
this.id = id;
}

Expand Down
11 changes: 3 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,6 @@
</properties>

<dependencies>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>2.0.1.Final</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
Expand All @@ -46,18 +41,18 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.32</version>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.8.2</version>
<version>5.9.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>4.2.0</version>
<version>4.8.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 5b705dd

Please sign in to comment.