Skip to content

Commit be85f32

Browse files
committed
create module5 branch
1 parent 744512b commit be85f32

File tree

2 files changed

+18
-7
lines changed

2 files changed

+18
-7
lines changed

README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
# About this repo
2-
3-
This is the codebase of the **Learn Java Streams** course.
4-
5-
If you're already a student of the course you can start exploring this through the lesson notes in the course.
6-
7-
Note that the code for each module is hosted on its own branch, you'll have to switch to the branch corresponding to the module you're on, for example: `git checkout module1`
1+
# Learn Java Streams - Advanced Stream Operations
82

3+
This is the codebase for Module "Advanced Stream Operations" of Learn Java Streams.

pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<description>The 'Learn Java Streams' Course: Advanced Stream Operations</description>
7+
<name>advanced-stream-operations</name>
8+
9+
<groupId>com.baeldung</groupId>
10+
<artifactId>ljs-advanced-stream-operations</artifactId>
11+
<version>1.0.0</version>
12+
<packaging>pom</packaging>
13+
14+
<modules>
15+
</modules>
16+
</project>

0 commit comments

Comments
 (0)