Skip to content

Commit 82bcb80

Browse files
Merge pull request #27 from bobocode-projects/GP-135-migrate-java-web-course-to-java-17
2 parents 7ade4bb + bc1577b commit 82bcb80

File tree

34 files changed

+52
-66
lines changed

34 files changed

+52
-66
lines changed

.github/workflows/projectActions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
uses: srggrs/assign-one-project-github-action@1.2.1
1717
if: github.event.action == 'opened' || contains(github.event.issue.labels.*.name, 'java-web')
1818
with:
19-
project: 'https://github.com/bobocode-projects/java-web-course/projects/1'
19+
project: 'https://github.com/bobocode-projects/java-web-exercises/projects/1'

0-0-intro/0-0-1-welcome-to-java-web-course/README.MD renamed to 0-0-intro/0-0-1-welcome-to-java-web-exercises/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 renamed to 0-0-intro/0-0-1-welcome-to-java-web-exercises/pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,9 @@
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

12-
<artifactId>0-0-1-welcome-to-java-web-course</artifactId>
12+
<artifactId>0-0-1-welcome-to-java-web-exercises</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>

0-0-intro/0-0-1-welcome-to-java-web-course/src/main/resources/templates/welcome.html renamed to 0-0-intro/0-0-1-welcome-to-java-web-exercises/src/main/resources/templates/welcome.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</head>
77
<body align="center">
88
<p style="font-size: 64px; margin-top: 10%" th:text="${name != null} ? ${name} + ',' : '&nbsp;'"></p>
9-
<p style="font-size: 64px; margin-top: 8%">Welcome to <b>Java Web Course</b></p>
9+
<p style="font-size: 64px; margin-top: 8%">Welcome to <b>Java Web Exercises</b></p>
1010
<div>
1111
<img src="https://raw.githubusercontent.com/bobocode-projects/resources/master/image/bobo_logo.png"
1212
style="width: 30%"/>

0-0-intro/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<parent>
6-
<artifactId>java-web-course</artifactId>
6+
<artifactId>java-web-exercises</artifactId>
77
<groupId>com.bobocode</groupId>
88
<version>1.0-SNAPSHOT</version>
99
</parent>
@@ -12,7 +12,7 @@
1212
<artifactId>0-0-intro</artifactId>
1313
<packaging>pom</packaging>
1414
<modules>
15-
<module>0-0-1-welcome-to-java-web-course</module>
15+
<module>0-0-1-welcome-to-java-web-exercises</module>
1616
</modules>
1717

1818
</project>

1-0-networking-and-http/1-0-0-hello-network-socket/README.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Learn **Sockets** – the essential part of Java networking 💪
2020

2121
---
2222

23-
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-course/tree/main/0-0-intro#introduction)
23+
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
2424

2525
##
2626
<div align="center"><img src="https://raw.githubusercontent.com/bobocode-projects/resources/master/animation/GitHub%20Star_3.gif" height=50/></div>

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>

1-0-networking-and-http/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<parent>
6-
<artifactId>java-web-course</artifactId>
6+
<artifactId>java-web-exercises</artifactId>
77
<groupId>com.bobocode</groupId>
88
<version>1.0-SNAPSHOT</version>
99
</parent>

0 commit comments

Comments
 (0)