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 2013/10/28 23:02:01 UTC

svn commit: r1536538 - in /isis/site/trunk/content/getting-started: quickstart-archetype.md simple-archetype.md

Author: danhaywood
Date: Mon Oct 28 22:02:00 2013
New Revision: 1536538

URL: http://svn.apache.org/r1536538
Log:
minor updates to archetype pages

Modified:
    isis/site/trunk/content/getting-started/quickstart-archetype.md
    isis/site/trunk/content/getting-started/simple-archetype.md

Modified: isis/site/trunk/content/getting-started/quickstart-archetype.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/getting-started/quickstart-archetype.md?rev=1536538&r1=1536537&r2=1536538&view=diff
==============================================================================
--- isis/site/trunk/content/getting-started/quickstart-archetype.md (original)
+++ isis/site/trunk/content/getting-started/quickstart-archetype.md Mon Oct 28 22:02:00 2013
@@ -18,18 +18,15 @@ mvn archetype:generate  \
     -D archetypeArtifactId=quickstart_wicket_restful_jdo-archetype \
     -D archetypeVersion=1.0.3 \
     -D groupId=com.mycompany \
-    -D artifactId=myapp
+    -D artifactId=myapp \
+    -D version=1.0-SNAPSHOT \
+    -B
 </pre>
 where:
 
 - `groupId` represents your own organization, and
 - `artifactId` is a unique identifier for this app within your organization.
-
-You'll then be prompted for some further properties; you can generally leave these as the default:
-
-- enter a version, eg `1.0-SNAPSHOT`
-- enter a package
-- confirm the entry
+- `version` is the initial (snapshot) version of your app.
 
 The archetype generation process will then run; it only takes a few seconds.
 

Modified: isis/site/trunk/content/getting-started/simple-archetype.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/getting-started/simple-archetype.md?rev=1536538&r1=1536537&r2=1536538&view=diff
==============================================================================
--- isis/site/trunk/content/getting-started/simple-archetype.md (original)
+++ isis/site/trunk/content/getting-started/simple-archetype.md Mon Oct 28 22:02:00 2013
@@ -16,18 +16,15 @@ mvn archetype:generate  \
     -D archetypeArtifactId=simple_wicket_restful_jdo-archetype \
     -D archetypeVersion=1.3.0 \
     -D groupId=com.mycompany \
-    -D artifactId=myapp
+    -D artifactId=myapp \
+    -D version=1.0-SNAPSHOT \
+    -B
 </pre>
 where:
 
 - `groupId` represents your own organization, and
 - `artifactId` is a unique identifier for this app within your organization.
-
-You'll then be prompted for some further properties; you can generally leave these as the default:
-
-- enter a version, eg `1.0-SNAPSHOT`
-- enter a package
-- confirm the entry
+- `version` is the initial (snapshot) version of your app
 
 The archetype generation process will then run; it only takes a few seconds.