Skip to content

Commit 765e1e1

Browse files
authored
update checklist.md reference (#696)
1 parent 1341af8 commit 765e1e1

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Hibernate - create User service
1+
# Hibernate - Create user service
22

33
We will continue working on our Cinema project.
44

@@ -27,17 +27,17 @@ Your task is to implement the following steps:
2727
User login(String email, String password) throws AuthenticationException;
2828

2929
/**
30-
* We should register a new user. New user entity will contains the email and password
30+
* We should register a new user. The new user entity will contain the email and password
3131
* @param email - user email. should be unique for each user
3232
* @param password - user password
3333
* @return new user instance
3434
*/
3535
User register(String email, String password) throws RegistrationException;
3636
}
3737
````
38-
- Create your own checked `RegistrationException` and `AuthenticationException` to use it in `register()` and `login()` methods respectively
38+
- Create your own checked `RegistrationException` and `AuthenticationException` to use in `register()` and `login()` methods respectively
3939

40-
- Please don’t forget to use salt and password hashing
41-
- In the `mate/academy/Main.main()` method create instance of AuthenticationService using injector and test all methods from it.
40+
- Please don’t forget to use salt and password-hashing
41+
- In the `mate/academy/Main.main()` method create an instance of AuthenticationService using injector and test all methods from it.
4242

43-
[Try to avoid these common mistakes, while solving task](https://mate-academy.github.io/jv-program-common-mistakes/hibernate/add-user-service/add-user-service-checklist)
43+
[Try to avoid these common mistakes, while solving task](./checklist.md)

pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
<jdk.version>17</jdk.version>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1414
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
15-
<maven.checkstyle.plugin.version>3.1.1</maven.checkstyle.plugin.version>
1615
<maven.checkstyle.plugin.configLocation>
1716
https://raw.githubusercontent.com/mate-academy/style-guides/master/java/checkstyle.xml
1817
</maven.checkstyle.plugin.configLocation>

0 commit comments

Comments
 (0)