Skip to content

Commit 0edc9e3

Browse files
committed
fix build and add to build-all.sh
1 parent 7d4dd46 commit 0edc9e3

File tree

4 files changed

+32
-78
lines changed

4 files changed

+32
-78
lines changed

build-all.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ if [[ "$MODULE" == "module5" ]]
8686
then
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"

core-java/streams/fileswithstreams/.classpath

Lines changed: 0 additions & 39 deletions
This file was deleted.

core-java/streams/fileswithstreams/.project

Lines changed: 0 additions & 23 deletions
This file was deleted.
Lines changed: 31 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,34 @@
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>

0 commit comments

Comments
 (0)