Skip to content

Commit 77d87ac

Browse files
GP - 135: migrating to java 17
1 parent 7ade4bb commit 77d87ac

File tree

9 files changed

+8
-23
lines changed

9 files changed

+8
-23
lines changed

0-0-intro/0-0-1-welcome-to-java-web-course/README.MD

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
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

33
This 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) 🔗

0-0-intro/0-0-1-welcome-to-java-web-course/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
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>

1-0-networking-and-http/1-0-0-hello-network-socket/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@
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>

2-0-servlet-api/2-0-1-hello-servlet-api/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
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>

3-0-spring-framework/3-0-2-view-resolver/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
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>

3-0-spring-framework/3-1-1-dispatcher-servlet-initializer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
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>

3-0-spring-framework/3-2-1-account-rest-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
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>

lesson-demo/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,6 @@
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>

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
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>

0 commit comments

Comments
 (0)