Author: hlship
Date: Fri Feb 20 01:02:37 2009
New Revision: 746081

URL: http://svn.apache.org/viewvc?rev=746081&view=rev
Log:
TAP5-530: Documentation should identify how to boot-strap the quickstart 
archetype from the Tapestry360 Maven repository (not snapshot repository)

Modified:
    tapestry/tapestry5/trunk/pom.xml
    tapestry/tapestry5/trunk/quickstart/pom.xml
    
tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/pom.xml
    tapestry/tapestry5/trunk/quickstart/src/site/apt/index.apt
    tapestry/tapestry5/trunk/tapestry-annotations/pom.xml
    tapestry/tapestry5/trunk/tapestry-component-report/pom.xml
    tapestry/tapestry5/trunk/tapestry-core/pom.xml
    tapestry/tapestry5/trunk/tapestry-hibernate-core/pom.xml
    tapestry/tapestry5/trunk/tapestry-hibernate/pom.xml
    tapestry/tapestry5/trunk/tapestry-ioc/pom.xml
    tapestry/tapestry5/trunk/tapestry-spring/pom.xml
    tapestry/tapestry5/trunk/tapestry-test/pom.xml
    tapestry/tapestry5/trunk/tapestry-tutorial1/pom.xml
    tapestry/tapestry5/trunk/tapestry-upload/pom.xml
    tapestry/tapestry5/trunk/tapestry-webflow/pom.xml

Modified: tapestry/tapestry5/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/pom.xml?rev=746081&r1=746080&r2=746081&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/pom.xml (original)
+++ tapestry/tapestry5/trunk/pom.xml Fri Feb 20 01:02:37 2009
@@ -4,7 +4,7 @@
     <groupId>org.apache.tapestry</groupId>
     <artifactId>tapestry-project</artifactId>
     <packaging>pom</packaging>
-    <version>5.1.0.0</version>
+    <version>5.1.0.1-SNAPSHOT</version>
     <name>Tapestry 5 Project</name>
     <description>Master project for the modules of Tapestry 5.</description>
     <inceptionYear>2006</inceptionYear>

Modified: tapestry/tapestry5/trunk/quickstart/pom.xml
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/quickstart/pom.xml?rev=746081&r1=746080&r2=746081&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/quickstart/pom.xml (original)
+++ tapestry/tapestry5/trunk/quickstart/pom.xml Fri Feb 20 01:02:37 2009
@@ -14,7 +14,7 @@
     <parent>
         <groupId>org.apache.tapestry</groupId>
         <artifactId>tapestry-project</artifactId>
-        <version>5.1.0.0</version>
+        <version>5.1.0.1-SNAPSHOT</version>
     </parent>
     <name>Tapestry 5 Quickstart Archetype</name>
     <inceptionYear>2007</inceptionYear>

Modified: 
tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/pom.xml
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/pom.xml?rev=746081&r1=746080&r2=746081&view=diff
==============================================================================
--- 
tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/pom.xml
 (original)
+++ 
tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/pom.xml
 Fri Feb 20 01:02:37 2009
@@ -94,10 +94,14 @@
     </reporting>
 
     <repositories>
-        <!-- This can be commented out when the tapestry-release-version is a 
not a snapshot.
- The non-snapshot Tapestry artifacts are distributed through the central
- repository at ibiblio.     -->
 
+        <!-- This repository is only needed if the Tapestry released artifacts 
haven't made it to the central Maven repository yet. -->
+        <repository>
+            <id>tapestry</id>
+            <url>http://tapestry.formos.com/maven-repository/</url>
+        </repository>
+
+        <!-- This repository is only needed when the tapestry-release-version 
is a snapshot release. -->
         <repository>
             <id>tapestry-snapshots</id>
             <url>http://tapestry.formos.com/maven-snapshot-repository/</url>
@@ -127,6 +131,6 @@
     </pluginRepositories>
 
     <properties>
-        <tapestry-release-version>5.1.0.0</tapestry-release-version>
+        <tapestry-release-version>5.1.0.1-SNAPSHOT</tapestry-release-version>
     </properties>
 </project>

Modified: tapestry/tapestry5/trunk/quickstart/src/site/apt/index.apt
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/quickstart/src/site/apt/index.apt?rev=746081&r1=746080&r2=746081&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/quickstart/src/site/apt/index.apt (original)
+++ tapestry/tapestry5/trunk/quickstart/src/site/apt/index.apt Fri Feb 20 
01:02:37 2009
@@ -16,7 +16,10 @@
   
   From the command line, you execute the following command:
 
-  <<<mvn archetype:generate 
-DarchetypeCatalog=http://tapestry.formos.com/maven-snapshot-repository>>>
+  <<<mvn archetype:generate 
-DarchetypeCatalog=http://tapestry.formos.com/maven-repository>>>
+
+  Note: use the URL http://tapestry.formos.com/maven-snapshot-repository if 
you want to access a snapshot version of the archetype, rather
+  than the most recent released version.
 
   Maven uses the archetypeCatalog to get a list of available archetypes; in 
this case, the only option is the Tapestry Quickstart.
   It will then ask you to enter the groupId, artifactId, version, and package.

Modified: tapestry/tapestry5/trunk/tapestry-annotations/pom.xml
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-annotations/pom.xml?rev=746081&r1=746080&r2=746081&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-annotations/pom.xml (original)
+++ tapestry/tapestry5/trunk/tapestry-annotations/pom.xml Fri Feb 20 01:02:37 
2009
@@ -9,7 +9,7 @@
     <parent>
         <groupId>org.apache.tapestry</groupId>
         <artifactId>tapestry-project</artifactId>
-        <version>5.1.0.0</version>
+        <version>5.1.0.1-SNAPSHOT</version>
     </parent>
     <name>Tapestry Annotations</name>
     <description>

Modified: tapestry/tapestry5/trunk/tapestry-component-report/pom.xml
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-component-report/pom.xml?rev=746081&r1=746080&r2=746081&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-component-report/pom.xml (original)
+++ tapestry/tapestry5/trunk/tapestry-component-report/pom.xml Fri Feb 20 
01:02:37 2009
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.apache.tapestry</groupId>
         <artifactId>tapestry-project</artifactId>
-        <version>5.1.0.0</version>
+        <version>5.1.0.1-SNAPSHOT</version>
     </parent>
 
     <inceptionYear>2007</inceptionYear>

Modified: tapestry/tapestry5/trunk/tapestry-core/pom.xml
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/pom.xml?rev=746081&r1=746080&r2=746081&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/pom.xml (original)
+++ tapestry/tapestry5/trunk/tapestry-core/pom.xml Fri Feb 20 01:02:37 2009
@@ -7,7 +7,7 @@
     <parent>
         <groupId>org.apache.tapestry</groupId>
         <artifactId>tapestry-project</artifactId>
-        <version>5.1.0.0</version>
+        <version>5.1.0.1-SNAPSHOT</version>
     </parent>
     <name>Tapestry Core Library</name>
     <description>

Modified: tapestry/tapestry5/trunk/tapestry-hibernate-core/pom.xml
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-hibernate-core/pom.xml?rev=746081&r1=746080&r2=746081&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-hibernate-core/pom.xml (original)
+++ tapestry/tapestry5/trunk/tapestry-hibernate-core/pom.xml Fri Feb 20 
01:02:37 2009
@@ -11,7 +11,7 @@
     <parent>
         <groupId>org.apache.tapestry</groupId>
         <artifactId>tapestry-project</artifactId>
-        <version>5.1.0.0</version>
+        <version>5.1.0.1-SNAPSHOT</version>
     </parent>
     <inceptionYear>2007</inceptionYear>
 

Modified: tapestry/tapestry5/trunk/tapestry-hibernate/pom.xml
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-hibernate/pom.xml?rev=746081&r1=746080&r2=746081&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-hibernate/pom.xml (original)
+++ tapestry/tapestry5/trunk/tapestry-hibernate/pom.xml Fri Feb 20 01:02:37 2009
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.apache.tapestry</groupId>
         <artifactId>tapestry-project</artifactId>
-        <version>5.1.0.0</version>
+        <version>5.1.0.1-SNAPSHOT</version>
     </parent>
     <inceptionYear>2007</inceptionYear>
 

Modified: tapestry/tapestry5/trunk/tapestry-ioc/pom.xml
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-ioc/pom.xml?rev=746081&r1=746080&r2=746081&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-ioc/pom.xml (original)
+++ tapestry/tapestry5/trunk/tapestry-ioc/pom.xml Fri Feb 20 01:02:37 2009
@@ -8,7 +8,7 @@
     <parent>
         <groupId>org.apache.tapestry</groupId>
         <artifactId>tapestry-project</artifactId>
-        <version>5.1.0.0</version>
+        <version>5.1.0.1-SNAPSHOT</version>
     </parent>
     <name>Tapestry Inversion of Control Container</name>
     <description>

Modified: tapestry/tapestry5/trunk/tapestry-spring/pom.xml
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-spring/pom.xml?rev=746081&r1=746080&r2=746081&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-spring/pom.xml (original)
+++ tapestry/tapestry5/trunk/tapestry-spring/pom.xml Fri Feb 20 01:02:37 2009
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.apache.tapestry</groupId>
         <artifactId>tapestry-project</artifactId>
-        <version>5.1.0.0</version>
+        <version>5.1.0.1-SNAPSHOT</version>
     </parent>
 
     <dependencies>

Modified: tapestry/tapestry5/trunk/tapestry-test/pom.xml
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-test/pom.xml?rev=746081&r1=746080&r2=746081&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-test/pom.xml (original)
+++ tapestry/tapestry5/trunk/tapestry-test/pom.xml Fri Feb 20 01:02:37 2009
@@ -10,7 +10,7 @@
     <parent>
         <groupId>org.apache.tapestry</groupId>
         <artifactId>tapestry-project</artifactId>
-        <version>5.1.0.0</version>
+        <version>5.1.0.1-SNAPSHOT</version>
     </parent>
 
     <dependencies>

Modified: tapestry/tapestry5/trunk/tapestry-tutorial1/pom.xml
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-tutorial1/pom.xml?rev=746081&r1=746080&r2=746081&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-tutorial1/pom.xml (original)
+++ tapestry/tapestry5/trunk/tapestry-tutorial1/pom.xml Fri Feb 20 01:02:37 2009
@@ -19,7 +19,7 @@
     <parent>
         <groupId>org.apache.tapestry</groupId>
         <artifactId>tapestry-project</artifactId>
-        <version>5.1.0.0</version>
+        <version>5.1.0.1-SNAPSHOT</version>
     </parent>
 
     <dependencies>

Modified: tapestry/tapestry5/trunk/tapestry-upload/pom.xml
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-upload/pom.xml?rev=746081&r1=746080&r2=746081&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-upload/pom.xml (original)
+++ tapestry/tapestry5/trunk/tapestry-upload/pom.xml Fri Feb 20 01:02:37 2009
@@ -13,7 +13,7 @@
     <parent>
         <groupId>org.apache.tapestry</groupId>
         <artifactId>tapestry-project</artifactId>
-        <version>5.1.0.0</version>
+        <version>5.1.0.1-SNAPSHOT</version>
     </parent>
     <inceptionYear>2007</inceptionYear>
 

Modified: tapestry/tapestry5/trunk/tapestry-webflow/pom.xml
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-webflow/pom.xml?rev=746081&r1=746080&r2=746081&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-webflow/pom.xml (original)
+++ tapestry/tapestry5/trunk/tapestry-webflow/pom.xml Fri Feb 20 01:02:37 2009
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.apache.tapestry</groupId>
         <artifactId>tapestry-project</artifactId>
-        <version>5.1.0.0</version>
+        <version>5.1.0.1-SNAPSHOT</version>
     </parent>
 
     <dependencies>


Reply via email to