Skip to content

Commit 2d7ac4c

Browse files
GP - 135: renaming modules
1 parent 77d87ac commit 2d7ac4c

File tree

27 files changed

+24
-24
lines changed

27 files changed

+24
-24
lines changed

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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
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>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

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/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>

2-0-servlet-api/2-0-1-hello-servlet-api/README.MD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Start learning Servlet API – the foundation of Java web applications 💪
33

44
### Pre-conditions ❗
5-
You're supposed to be familiar with [Java Fundamentals](https://github.com/bobocode-projects/java-fundamentals-course#welcome-to-the-java-fundamentals-course)
5+
You're supposed to be familiar with [Java Fundamentals](https://github.com/bobocode-projects/java-fundamentals-exercises#welcome-to-the-java-fundamentals-exercises)
66

77
### Objectives
88
* **install** [Apache Tomcat Container](https://tomcat.apache.org/download-90.cgi) locally (if you don't have it yet) ✅
@@ -43,7 +43,7 @@ todo
4343
[![Linked List](https://yt-embed.herokuapp.com/embed?v=s11Fjue5Svs)](https://youtu.be/s11Fjue5Svs)
4444

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

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

2-0-servlet-api/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)