You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2007/10/13 21:45:25 UTC

svn commit: r584445 - in /tapestry/tapestry5/trunk/quickstart/src: main/resources/META-INF/archetype.xml main/resources/archetype-resources/src/main/resources/log4j.properties site/apt/index.apt

Author: hlship
Date: Sat Oct 13 12:45:24 2007
New Revision: 584445

URL: http://svn.apache.org/viewvc?rev=584445&view=rev
Log:
TAPESTRY-1825: Full Tapestry releases should have the artifacts deployed with the updateReleaseInfo flag set

Modified:
    tapestry/tapestry5/trunk/quickstart/src/main/resources/META-INF/archetype.xml
    tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/src/main/resources/log4j.properties
    tapestry/tapestry5/trunk/quickstart/src/site/apt/index.apt

Modified: tapestry/tapestry5/trunk/quickstart/src/main/resources/META-INF/archetype.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/quickstart/src/main/resources/META-INF/archetype.xml?rev=584445&r1=584444&r2=584445&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/quickstart/src/main/resources/META-INF/archetype.xml (original)
+++ tapestry/tapestry5/trunk/quickstart/src/main/resources/META-INF/archetype.xml Sat Oct 13 12:45:24 2007
@@ -11,6 +11,7 @@
         <resource>src/test/resources/PLACEHOLDER</resource>
     </resources>
     <sources>
+        <source>src/main/java/base/</source>
         <source>src/main/java/pages/Start.java</source>
         <source>src/main/java/services/AppModule.java</source>
     </sources>

Modified: tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/src/main/resources/log4j.properties
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/src/main/resources/log4j.properties?rev=584445&r1=584444&r2=584445&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/src/main/resources/log4j.properties (original)
+++ tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/src/main/resources/log4j.properties Sat Oct 13 12:45:24 2007
@@ -12,10 +12,13 @@
 log4j.category.tapestry=error
 
 log4j.category.${packageName}=error
-log4j.category.app=error
-log4j.category.app.TimingFilter=info
+
+# Service category names are the name of the defining module class
+# and then the service id.
+log4j.category.${packageName}.services.AppModule.TimingFilter=info
 
 # Turning on debug mode for a page or component will show all of the code changes that occur when the
-# class is loaded.  Turning on debug mode for a page will enable verbose output about rendering
-# the page (and its components).
+# class is loaded.  Turning on debug mode for a page will enable detailed output about
+# the contruction of the page, including the runtime code modifications that occur. Verbose
+# mode is rarely used, as it output voluminous details about the rendering of the page.
 # log4j.category.${packageName}.pages.Start=debug

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=584445&r1=584444&r2=584445&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/quickstart/src/site/apt/index.apt (original)
+++ tapestry/tapestry5/trunk/quickstart/src/site/apt/index.apt Sat Oct 13 12:45:24 2007
@@ -16,18 +16,18 @@
   
   From the command line, you execute the following command (it's a bit of a doozy):
   
-  mvn archetype:create -DarchetypeGroupId=org.apache.tapestry -DarchetypeArtifactId=quickstart -DarchetypeVersion=5.0.5 -DgroupId=<<org.example>> -DartifactId=<<myapp>> -DpackageName=<<org.example.myapp>> -Dversion=<<1.0.0-SNAPSHOT>>
+  mvn archetype:create -DarchetypeGroupId=org.apache.tapestry -DarchetypeArtifactId=quickstart -DgroupId=<<org.example>> -DartifactId=<<myapp>> -DpackageName=<<org.example.myapp>> -Dversion=<<1.0.0-SNAPSHOT>>
   
   Maven will use the information from that massive command line to locate and configure the archetpe, and produce the project:
   
 +---+
-$ mvn archetype:create -DarchetypeGroupId=org.apache.tapestry -DarchetypeArtifactId=quickstart -DarchetypeVersion=5.0.5 -DgroupId=org.example -DartifactId=myapp -DpackageName=org.example.myapp -Dversion=1.0.0-SNAPSHOT
+$ mvn archetype:create -DarchetypeGroupId=org.apache.tapestry -DarchetypeArtifactId=quickstart -DgroupId=org.example -DartifactId=myapp -DpackageName=org.example.myapp -Dversion=1.0.0-SNAPSHOT
 [INFO] Scanning for projects...
 [INFO] Searching repository for plugin with prefix: 'archetype'.
 [INFO] ----------------------------------------------------------------------------
 [INFO] Building Maven Default Project
 [INFO]    task-segment: [archetype:create] (aggregator-style)
-[INFO] ----------------------------------------------------------------------------\
+[INFO] ----------------------------------------------------------------------------
 
 . . .
 
@@ -103,9 +103,9 @@
   
 About Snapshots
 
-  Tapestry 5 is currently in a pre-release stage. The Tapestry libraries, including this archetype, are being distributed as snaphots, subject to change at any time. They are not yet in the central Maven repository.
-  To make use of the Tapestry snapshots, append  <<<-DremoteRepositories=http://people.apache.org/repo/m2-snapshot-repository/>>> to the command line when invoking Maven. 
+  Tapestry 5 is currently in a pre-release stage. The Tapestry libraries, including this archetype, are being distributed as snaphots and are rebuilt nightly. Being snapshots, these artifacts are not in the central Maven repository.
+  To make use of the Tapestry snapshots, append  <<<-DremoteRepositories=http://tapestry.formos.com/maven-snapshot-repository/>>> and <<<-DarchetypeVersion=5.0.6-SNAPSHOT>>>  to the command line when invoking Maven. 
   
-  The generated POM includes entries to automatically search the Apache snapshot repository, so you won't need to use <<<-DremoveRepositories>>> after creating your initial project.
+  The generated POM includes entries to automatically search the snapshot repository, so you won't need to use <<<-DremoteRepositories>>> after creating your initial project.