This is an automated email from the ASF dual-hosted git repository.
rawkintrevo pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/mahout.git
The following commit(s) were added to refs/heads/trunk by this push:
new bc494c0 added builder docker
bc494c0 is described below
commit bc494c09ec0a9cc4cb82920343ef9ec832a47061
Author: Trevor a.k.a @rawkintrevo <[email protected]>
AuthorDate: Thu Jun 25 16:46:30 2020 -0500
added builder docker
---
community/spark-cli-drivers/pom.xml | 2 +-
core/pom.xml | 2 +-
docker/build/README.md | 32 ++++++++++++++++++++++++++++++++
engine/spark/pom.xml | 2 +-
pom.xml | 2 +-
5 files changed, 36 insertions(+), 4 deletions(-)
diff --git a/community/spark-cli-drivers/pom.xml
b/community/spark-cli-drivers/pom.xml
index 5a7a058..c333d2a 100644
--- a/community/spark-cli-drivers/pom.xml
+++ b/community/spark-cli-drivers/pom.xml
@@ -190,7 +190,7 @@
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
- <version>4.0.2</version>
+ <version>4.4.0</version>
<executions>
<execution>
<id>add-scala-sources</id>
diff --git a/core/pom.xml b/core/pom.xml
index b2fab2b..badc261 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -196,7 +196,7 @@
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
- <version>4.0.2</version>
+ <version>4.4.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
diff --git a/docker/build/README.md b/docker/build/README.md
new file mode 100644
index 0000000..fe06231
--- /dev/null
+++ b/docker/build/README.md
@@ -0,0 +1,32 @@
+The Spirit of this Container is so we can all build on the "same machine" e.g.
no "well it worked on my machine"
+
+Build it with
+
+```bash
+docker build -t mahout-builder-base .
+```
+OR pull a convienience
+
+```bash
+docker pull rawkintrevo/mahout-builder-base
+```
+Get into it with
+
+```bash
+docker run -it mahout-builder-base bash
+# or if you pulled convienience...
+docker run -it rawkintrevo/mahout-builder-base bash
+```
+
+Save your commands in the Dockerfile
+
+Then maybe do something like
+
+```bash
+cd mahout
+git checkout build-cleanup
+git pull # if you pulled convienience, its likely out of date.
+mvn clean package -DskipTests
+```
+
+The end goal is to be able to build / post RCs from this.
diff --git a/engine/spark/pom.xml b/engine/spark/pom.xml
index df573c8..3fb6ae5 100644
--- a/engine/spark/pom.xml
+++ b/engine/spark/pom.xml
@@ -64,7 +64,7 @@
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
- <version>4.0.2</version>
+ <version>4.4.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
diff --git a/pom.xml b/pom.xml
index 1127b33..267acc9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -296,7 +296,7 @@
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
- <version>3.4.4</version>
+ <version>4.4.0</version>
<executions>
<execution>
<id>attach-javadocs</id>