You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2017/01/03 19:03:31 UTC

isis git commit: ISIS-1560: minor improvement to release process docs

Repository: isis
Updated Branches:
  refs/heads/master b17573ccc -> acc21e494


ISIS-1560: minor improvement to release process docs


Project: http://git-wip-us.apache.org/repos/asf/isis/repo
Commit: http://git-wip-us.apache.org/repos/asf/isis/commit/acc21e49
Tree: http://git-wip-us.apache.org/repos/asf/isis/tree/acc21e49
Diff: http://git-wip-us.apache.org/repos/asf/isis/diff/acc21e49

Branch: refs/heads/master
Commit: acc21e494d065eeaa63f1161e460df739b969241
Parents: b17573c
Author: Dan Haywood <da...@haywood-associates.co.uk>
Authored: Tue Jan 3 18:51:50 2017 +0000
Committer: Dan Haywood <da...@haywood-associates.co.uk>
Committed: Tue Jan 3 18:51:50 2017 +0000

----------------------------------------------------------------------
 .../guides/_cgcom_cutting-a-release.adoc        | 23 +++++++++++++++++++-
 1 file changed, 22 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/isis/blob/acc21e49/adocs/documentation/src/main/asciidoc/guides/_cgcom_cutting-a-release.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_cgcom_cutting-a-release.adoc b/adocs/documentation/src/main/asciidoc/guides/_cgcom_cutting-a-release.adoc
index 3bfc4c8..5fb8797 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_cgcom_cutting-a-release.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_cgcom_cutting-a-release.adoc
@@ -439,13 +439,25 @@ mvn clean install
 
 * can be run from an IDE
 ** mainClass=`org.apache.isis.WebServer`
-** args=`-m domainapp.app.DomainAppAppManifestWithFixtures`
+** args=`-m domainapp.application.manifest.DomainAppAppManifestWithFixtures`
+** run before: `mvn -f pom-jdo-enhance-all.xml datanucleus:enhance -o` in the root module
 
 * can be run using the mvn jetty plugin:
 +
 [source,bash]
 ----
 mvn -pl webapp jetty:run
+<<<<<<< Updated upstream
+=======
+----
+
+* can be packaged and run using the mvn jetty-console plugin:
++
+[source,bash]
+----
+mvn install -Dmavenmixin-jettyconsole
+mvn antrun:run -Dmavenmixin-jettyconsole
+>>>>>>> Stashed changes
 ----
 
 * can be deployed as a WAR
@@ -466,6 +478,15 @@ sh shutdown.sh
 popd
 ----
 
+* can be packaged and run using Docker:
++
+[source,bash]
+----
+mvn package -Dmavenmixin-docker -D docker-plugin.imageName=test/simpleapp
+docker run -p 8080:8080 -d --name simpleapp test/simpleapp
+----
+
+
 In each case, check the about page and confirm has been built against non-SNAPSHOT versions of the Apache Isis jars.