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
22
33This is a welcome test project to check if everything works okay on your computer
44
55### You should have installed on your local machine ❗️
6- * [ JDK 11 +] ( https ://jdk.java.net/15 /)
6+ * [ JDK 17 +] ( hhttps ://jdk.java.net/17 /)
77* [ Git] ( https://git-scm.com/book/en/v2/Getting-Started-Installing-Git )
88
99### How to start ❓
1010
1111* 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
1313* Open terminal and ** run a command** ` ./mvnw clean package ` (UNIX) or ` mvnw.cmd clean package ` (Windows)
1414* Open class ` WelcomeToJavaWebCourseApp ` and ** run** ` main() `
1515* [ Click here] ( http://localhost:8080/welcome ) 🔗
Original file line number Diff line number Diff line change 1212 <artifactId >0-0-1-welcome-to-java-web-course</artifactId >
1313
1414 <properties >
15- <maven .compiler.source>11</maven .compiler.source>
16- <maven .compiler.target>11</maven .compiler.target>
1715 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
1816 <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
1917 </properties >
Original file line number Diff line number Diff line change 1010 <modelVersion >4.0.0</modelVersion >
1111
1212 <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 >
1713
1814
1915</project >
Original file line number Diff line number Diff line change 1313 <packaging >war</packaging >
1414
1515 <properties >
16- <maven .compiler.source>11</maven .compiler.source>
17- <maven .compiler.target>11</maven .compiler.target>
1816 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
1917 <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
2018 </properties >
Original file line number Diff line number Diff line change 1414
1515 <properties >
1616 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
17- <maven .compiler.source>11</maven .compiler.source>
18- <maven .compiler.target>11</maven .compiler.target>
1917 </properties >
2018
2119 <dependencies >
Original file line number Diff line number Diff line change 3333 <plugin >
3434 <groupId >org.apache.maven.plugins</groupId >
3535 <artifactId >maven-war-plugin</artifactId >
36- <version >2.6 </version >
36+ <version >3.3.2 </version >
3737 <configuration >
3838 <failOnMissingWebXml >false</failOnMissingWebXml >
3939 </configuration >
Original file line number Diff line number Diff line change 4444 <plugin >
4545 <groupId >org.apache.maven.plugins</groupId >
4646 <artifactId >maven-war-plugin</artifactId >
47- <version >2.6 </version >
47+ <version >3.3.2 </version >
4848 <configuration >
4949 <failOnMissingWebXml >false</failOnMissingWebXml >
5050 </configuration >
Original file line number Diff line number Diff line change 1111
1212 <artifactId >lesson-demo</artifactId >
1313
14- <properties >
15- <maven .compiler.source>11</maven .compiler.source>
16- <maven .compiler.target>11</maven .compiler.target>
17- </properties >
18-
1914 <dependencies >
2015 <dependency >
2116 <groupId >jakarta.servlet</groupId >
Original file line number Diff line number Diff line change 2020 </modules >
2121
2222 <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>
2525 </properties >
2626
2727 <dependencies >
2828 <dependency >
2929 <groupId >org.projectlombok</groupId >
3030 <artifactId >lombok</artifactId >
31- <version >1.18.18 </version >
31+ <version >1.18.24 </version >
3232 <scope >provided</scope >
3333 </dependency >
3434 <dependency >
You can’t perform that action at this time.
0 commit comments