File tree Expand file tree Collapse file tree 9 files changed +8
-23
lines changed
0-0-intro/0-0-1-welcome-to-java-web-course
1-0-networking-and-http/1-0-0-hello-network-socket
2-0-servlet-api/2-0-1-hello-servlet-api
3-1-1-dispatcher-servlet-initializer Expand file tree Collapse file tree 9 files changed +8
-23
lines changed Original file line number Diff line number Diff line change 1
- # <img src =" https://raw.githubusercontent.com/bobocode-projects/resources/master/image/logo_transparent_background.png " height =50/ > Welcome to Java Web Course
1
+ # <img src =" https://raw.githubusercontent.com/bobocode-projects/resources/master/image/logo_transparent_background.png " height =50/ > Welcome to Java Web Exercises
2
2
3
3
This is a welcome test project to check if everything works okay on your computer
4
4
5
5
### You should have installed on your local machine ❗️
6
- * [ JDK 11 +] ( https ://jdk.java.net/15 /)
6
+ * [ JDK 17 +] ( hhttps ://jdk.java.net/17 /)
7
7
* [ Git] ( https://git-scm.com/book/en/v2/Getting-Started-Installing-Git )
8
8
9
9
### How to start ❓
10
10
11
11
* Just ** clone the repository** to your computer
12
- * Open project in your IDE and ** configure JDK 11 ** for the project
12
+ * Open project in your IDE and ** configure JDK 17 ** for the project
13
13
* Open terminal and ** run a command** ` ./mvnw clean package ` (UNIX) or ` mvnw.cmd clean package ` (Windows)
14
14
* Open class ` WelcomeToJavaWebCourseApp ` and ** run** ` main() `
15
15
* [ Click here] ( http://localhost:8080/welcome ) 🔗
Original file line number Diff line number Diff line change 12
12
<artifactId >0-0-1-welcome-to-java-web-course</artifactId >
13
13
14
14
<properties >
15
- <maven .compiler.source>11</maven .compiler.source>
16
- <maven .compiler.target>11</maven .compiler.target>
17
15
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
18
16
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
19
17
</properties >
Original file line number Diff line number Diff line change 10
10
<modelVersion >4.0.0</modelVersion >
11
11
12
12
<artifactId >1-0-0-hello-network-socket</artifactId >
13
- <properties >
14
- <maven .compiler.source>11</maven .compiler.source>
15
- <maven .compiler.target>11</maven .compiler.target>
16
- </properties >
17
13
18
14
19
15
</project >
Original file line number Diff line number Diff line change 13
13
<packaging >war</packaging >
14
14
15
15
<properties >
16
- <maven .compiler.source>11</maven .compiler.source>
17
- <maven .compiler.target>11</maven .compiler.target>
18
16
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
19
17
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
20
18
</properties >
Original file line number Diff line number Diff line change 14
14
15
15
<properties >
16
16
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
17
- <maven .compiler.source>11</maven .compiler.source>
18
- <maven .compiler.target>11</maven .compiler.target>
19
17
</properties >
20
18
21
19
<dependencies >
Original file line number Diff line number Diff line change 33
33
<plugin >
34
34
<groupId >org.apache.maven.plugins</groupId >
35
35
<artifactId >maven-war-plugin</artifactId >
36
- <version >2.6 </version >
36
+ <version >3.3.2 </version >
37
37
<configuration >
38
38
<failOnMissingWebXml >false</failOnMissingWebXml >
39
39
</configuration >
Original file line number Diff line number Diff line change 44
44
<plugin >
45
45
<groupId >org.apache.maven.plugins</groupId >
46
46
<artifactId >maven-war-plugin</artifactId >
47
- <version >2.6 </version >
47
+ <version >3.3.2 </version >
48
48
<configuration >
49
49
<failOnMissingWebXml >false</failOnMissingWebXml >
50
50
</configuration >
Original file line number Diff line number Diff line change 11
11
12
12
<artifactId >lesson-demo</artifactId >
13
13
14
- <properties >
15
- <maven .compiler.source>11</maven .compiler.source>
16
- <maven .compiler.target>11</maven .compiler.target>
17
- </properties >
18
-
19
14
<dependencies >
20
15
<dependency >
21
16
<groupId >jakarta.servlet</groupId >
Original file line number Diff line number Diff line change 20
20
</modules >
21
21
22
22
<properties >
23
- <maven .compiler.source>11 </maven .compiler.source>
24
- <maven .compiler.target>11 </maven .compiler.target>
23
+ <maven .compiler.source>17 </maven .compiler.source>
24
+ <maven .compiler.target>17 </maven .compiler.target>
25
25
</properties >
26
26
27
27
<dependencies >
28
28
<dependency >
29
29
<groupId >org.projectlombok</groupId >
30
30
<artifactId >lombok</artifactId >
31
- <version >1.18.18 </version >
31
+ <version >1.18.24 </version >
32
32
<scope >provided</scope >
33
33
</dependency >
34
34
<dependency >
You can’t perform that action at this time.
0 commit comments