You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2007/08/27 00:32:32 UTC

svn commit: r569895 - in /tapestry/tapestry5/trunk: quickstart/src/main/resources/archetype-resources/pom.xml src/site/apt/index.apt tapestry-tutorial1/pom.xml

Author: hlship
Date: Sun Aug 26 15:32:31 2007
New Revision: 569895

URL: http://svn.apache.org/viewvc?rev=569895&view=rev
Log:
TAPESTRY-1704: Convert dependencies from commons-logging to SLF4J

Modified:
    tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/pom.xml
    tapestry/tapestry5/trunk/src/site/apt/index.apt
    tapestry/tapestry5/trunk/tapestry-tutorial1/pom.xml

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=569895&r1=569894&r2=569895&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 Sun Aug 26 15:32:31 2007
@@ -14,16 +14,6 @@
             <version>${tapestry-release-version}</version>
         </dependency>
         
-        <!-- This can be removed if not desired. Tapestry uses commons-logging, not Log4J explicitly.
-             However, if Log4J is not on the classpath, commons-logging tends to use its own internal
-             logging which is not very configurable.  This project includes a log4j.properties file
-             to configure output. -->
-        <dependency>
-            <groupId>log4j</groupId>
-            <artifactId>log4j</artifactId>
-            <version>1.2.9</version>
-        </dependency>
-
         <!-- A dependency on either JUnit or TestNG is required, or the surefire plugin (which runs the tests)
              will fail, preventing Maven from packaging the WAR. Tapestry includes a large number
              of testing facilities designed for use with TestNG (http://testng.org/), so it's recommended. -->

Modified: tapestry/tapestry5/trunk/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/src/site/apt/index.apt?rev=569895&r1=569894&r2=569895&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/src/site/apt/index.apt (original)
+++ tapestry/tapestry5/trunk/src/site/apt/index.apt Sun Aug 26 15:32:31 2007
@@ -95,6 +95,8 @@
   []
   
 New and Noteworthy
+
+  * Logging in Tapestry is now implemented on top of {{{http://www.slf4j.org/docs.html}Simple Logging Facade for Java}}.
  
   * A file upload form component has been added, in a new library: {{{tapestry-upload/}tapestry-upload}}. 
  

Modified: tapestry/tapestry5/trunk/tapestry-tutorial1/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-tutorial1/pom.xml?rev=569895&r1=569894&r2=569895&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-tutorial1/pom.xml (original)
+++ tapestry/tapestry5/trunk/tapestry-tutorial1/pom.xml Sun Aug 26 15:32:31 2007
@@ -27,17 +27,7 @@
     <dependency>
       <groupId>org.apache.tapestry</groupId>
       <artifactId>tapestry-core</artifactId>
-      <version>${tapestry-release-version}</version>
-    </dependency>
-
-    <!-- This can be removed if not desired. Tapestry uses commons-logging, not Log4J explicitly.
-             However, if Log4J is not on the classpath, commons-logging tends to use its own internal
-             logging which is not very configurable.  This project includes a log4j.properties file
-             to configure output. -->
-    <dependency>
-      <groupId>log4j</groupId>
-      <artifactId>log4j</artifactId>
-      <version>1.2.9</version>
+      <version>${project.version}</version>
     </dependency>
 
     <!-- A dependency on either JUnit or TestNG is required, or the surefire plugin (which runs the tests)
@@ -109,9 +99,5 @@
       </plugin>
     </plugins>
   </reporting>
-
-  <properties>
-    <tapestry-release-version>5.0.6-SNAPSHOT</tapestry-release-version>
-  </properties>
   
 </project>