From 0edc9e3e8ed3cdfb0b5e91a8f2da92389cb89fd6 Mon Sep 17 00:00:00 2001 From: Tom Hombergs Date: Sun, 27 Sep 2020 07:39:25 +1000 Subject: [PATCH] fix build and add to build-all.sh --- build-all.sh | 1 + core-java/streams/fileswithstreams/.classpath | 39 --------------- core-java/streams/fileswithstreams/.project | 23 --------- core-java/streams/fileswithstreams/pom.xml | 47 ++++++++++++------- 4 files changed, 32 insertions(+), 78 deletions(-) delete mode 100644 core-java/streams/fileswithstreams/.classpath delete mode 100644 core-java/streams/fileswithstreams/.project diff --git a/build-all.sh b/build-all.sh index 4f3d2ae..1016bdf 100755 --- a/build-all.sh +++ b/build-all.sh @@ -86,6 +86,7 @@ if [[ "$MODULE" == "module5" ]] then # ADD NEW MODULES HERE # (add new modules above the rest so you get quicker feedback if it fails) + build_maven_module "core-java/streams/fileswithstreams" build_maven_module "spring-boot/spring-boot-logging-2" build_maven_module "spring-boot/spring-boot-docker" build_gradle_module "spring-boot/devtools-demo" diff --git a/core-java/streams/fileswithstreams/.classpath b/core-java/streams/fileswithstreams/.classpath deleted file mode 100644 index 36b1772..0000000 --- a/core-java/streams/fileswithstreams/.classpath +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/core-java/streams/fileswithstreams/.project b/core-java/streams/fileswithstreams/.project deleted file mode 100644 index 2de4f97..0000000 --- a/core-java/streams/fileswithstreams/.project +++ /dev/null @@ -1,23 +0,0 @@ - - - fileswithstreams - - - - - - org.eclipse.jdt.core.javabuilder - - - - - org.eclipse.m2e.core.maven2Builder - - - - - - org.eclipse.jdt.core.javanature - org.eclipse.m2e.core.maven2Nature - - diff --git a/core-java/streams/fileswithstreams/pom.xml b/core-java/streams/fileswithstreams/pom.xml index 10381bf..d4be1cd 100644 --- a/core-java/streams/fileswithstreams/pom.xml +++ b/core-java/streams/fileswithstreams/pom.xml @@ -1,19 +1,34 @@ - 4.0.0 - fileswithstreams - fileswithstreams - 0.0.1-SNAPSHOT - fileswithstreams - File management with streams - - - junit - junit - 4.13 - test - - + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> + 4.0.0 + fileswithstreams + fileswithstreams + 0.0.1-SNAPSHOT + fileswithstreams + File management with streams + + + + junit + junit + 4.13 + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 11 + 11 + + + + + \ No newline at end of file