You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by dg...@apache.org on 2018/09/25 19:09:22 UTC

[incubator-openwhisk-devtools] branch master updated: update docs for java-action-archetype (#160)

This is an automated email from the ASF dual-hosted git repository.

dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-devtools.git


The following commit(s) were added to refs/heads/master by this push:
     new 50ba0e4  update docs for java-action-archetype (#160)
50ba0e4 is described below

commit 50ba0e4f12d6258e185d9bf2d734f60a46080dcf
Author: Carlos Santana <cs...@apache.org>
AuthorDate: Tue Sep 25 15:09:17 2018 -0400

    update docs for java-action-archetype (#160)
---
 README.md                       | 1 +
 java-action-archetype/README.md | 5 +++++
 2 files changed, 6 insertions(+)

diff --git a/README.md b/README.md
index eee3b31..fae5917 100644
--- a/README.md
+++ b/README.md
@@ -8,6 +8,7 @@ This repository is part of [Apache OpenWhisk](http://openwhisk.incubator.apache.
 ## Subprojects
 
 * [docker-compose](docker-compose/README.md) allows testing OpenWhisk locally, using Docker Compose. This is ideal if you are contributing to core development
+* [java-action-archetype](java-action-archetype/README.md) This archetype helps to generate the Java Action template project.
 * [node-local](node-local/README.md) allows testing individual OpenWhisk functions locally, using only node.js. This is ideal if you are writing node.js functions to run in OpenWhisk, but need to emulate some of OpenWhisk's behavior in creating `params` and expecting promises.
 * [maven-java](maven-java/README.md) allows testing OpenWhisk Java Actions. This shows how to package the function dependencies e.g. external jar.
 
diff --git a/java-action-archetype/README.md b/java-action-archetype/README.md
index 67bf3da..d3929f5 100644
--- a/java-action-archetype/README.md
+++ b/java-action-archetype/README.md
@@ -11,6 +11,11 @@ The following softwares are required to build and deploy a Java Action to OpenWh
 
 [WSK CLI](https://github.com/apache/incubator-openwhisk/blob/master/docs/cli.md) is configured 
 
+## Install the archetype
+```sh
+mvn -DskipTests=true -Dmaven.javadoc.skip=true -B -V clean install
+```
+
 ## Generate project 
 
 ```sh