File tree Expand file tree Collapse file tree 4 files changed +32
-78
lines changed
core-java/streams/fileswithstreams Expand file tree Collapse file tree 4 files changed +32
-78
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ if [[ "$MODULE" == "module5" ]]
8686then
8787 # ADD NEW MODULES HERE
8888 # (add new modules above the rest so you get quicker feedback if it fails)
89+ build_maven_module " core-java/streams/fileswithstreams"
8990 build_maven_module " spring-boot/spring-boot-logging-2"
9091 build_maven_module " spring-boot/spring-boot-docker"
9192 build_gradle_module " spring-boot/devtools-demo"
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11<project xmlns =" http://maven.apache.org/POM/4.0.0"
2- xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
3- xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" >
4- <modelVersion >4.0.0</modelVersion >
5- <groupId >fileswithstreams</groupId >
6- <artifactId >fileswithstreams</artifactId >
7- <version >0.0.1-SNAPSHOT</version >
8- <name >fileswithstreams</name >
9- <description >File management with streams</description >
10- <dependencies >
11- <dependency >
12- <groupId >junit</groupId >
13- <artifactId >junit</artifactId >
14- <version >4.13</version >
15- <scope >test</scope >
16- </dependency >
17- </dependencies >
2+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" >
4+ <modelVersion >4.0.0</modelVersion >
5+ <groupId >fileswithstreams</groupId >
6+ <artifactId >fileswithstreams</artifactId >
7+ <version >0.0.1-SNAPSHOT</version >
8+ <name >fileswithstreams</name >
9+ <description >File management with streams</description >
10+
11+ <dependencies >
12+ <dependency >
13+ <groupId >junit</groupId >
14+ <artifactId >junit</artifactId >
15+ <version >4.13</version >
16+ <scope >test</scope >
17+ </dependency >
18+ </dependencies >
19+
20+ <build >
21+ <plugins >
22+ <plugin >
23+ <groupId >org.apache.maven.plugins</groupId >
24+ <artifactId >maven-compiler-plugin</artifactId >
25+ <configuration >
26+ <source >11</source >
27+ <target >11</target >
28+ </configuration >
29+ </plugin >
30+ </plugins >
31+ </build >
32+
1833
1934</project >
You can’t perform that action at this time.
0 commit comments