Author: apetrelli
Date: Wed Jun 30 14:05:52 2010
New Revision: 959318
URL: http://svn.apache.org/viewvc?rev=959318&view=rev
Log:
VELOCITYSB-4
Added velocity-log-commons-logging module.
Added:
velocity/sandbox/maven-reorg/engine/trunk/velocity-log-commons-logging/
(with props)
velocity/sandbox/maven-reorg/engine/trunk/velocity-log-commons-logging/pom.xml
(with props)
velocity/sandbox/maven-reorg/engine/trunk/velocity-log-commons-logging/src/
velocity/sandbox/maven-reorg/engine/trunk/velocity-log-commons-logging/src/main/
velocity/sandbox/maven-reorg/engine/trunk/velocity-log-commons-logging/src/main/java/
velocity/sandbox/maven-reorg/engine/trunk/velocity-log-commons-logging/src/main/resources/
velocity/sandbox/maven-reorg/engine/trunk/velocity-log-commons-logging/src/test/
velocity/sandbox/maven-reorg/engine/trunk/velocity-log-commons-logging/src/test/java/
velocity/sandbox/maven-reorg/engine/trunk/velocity-log-commons-logging/src/test/resources/
Modified:
velocity/sandbox/maven-reorg/engine/trunk/pom.xml
Modified: velocity/sandbox/maven-reorg/engine/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/velocity/sandbox/maven-reorg/engine/trunk/pom.xml?rev=959318&r1=959317&r2=959318&view=diff
==============================================================================
--- velocity/sandbox/maven-reorg/engine/trunk/pom.xml (original)
+++ velocity/sandbox/maven-reorg/engine/trunk/pom.xml Wed Jun 30 14:05:52 2010
@@ -157,6 +157,7 @@
<modules>
<module>velocity-engine</module>
<module>velocity-log-log4j</module>
+ <module>velocity-log-commons-logging</module>
<module>velocity-engine-examples</module>
<module>velocity-engine-assembly</module>
</modules>
Propchange:
velocity/sandbox/maven-reorg/engine/trunk/velocity-log-commons-logging/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Jun 30 14:05:52 2010
@@ -0,0 +1,2 @@
+.*
+target
Added:
velocity/sandbox/maven-reorg/engine/trunk/velocity-log-commons-logging/pom.xml
URL:
http://svn.apache.org/viewvc/velocity/sandbox/maven-reorg/engine/trunk/velocity-log-commons-logging/pom.xml?rev=959318&view=auto
==============================================================================
---
velocity/sandbox/maven-reorg/engine/trunk/velocity-log-commons-logging/pom.xml
(added)
+++
velocity/sandbox/maven-reorg/engine/trunk/velocity-log-commons-logging/pom.xml
Wed Jun 30 14:05:52 2010
@@ -0,0 +1,27 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <artifactId>velocity-engine-parent</artifactId>
+ <groupId>org.apache.velocity</groupId>
+ <version>2.0.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.apache.velocity</groupId>
+ <artifactId>velocity-log-commons-logging</artifactId>
+ <version>2.0.0-SNAPSHOT</version>
+ <name>Apache Velocity - Support for logging in Commons Logging</name>
+ <description>Allows to log in Commons Logging.</description>
+ <dependencies>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ <version>1.1.1</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.velocity</groupId>
+ <artifactId>velocity-engine</artifactId>
+ <version>2.0.0-SNAPSHOT</version>
+ <scope>compile</scope>
+ </dependency>
+ </dependencies>
+</project>
\ No newline at end of file
Propchange:
velocity/sandbox/maven-reorg/engine/trunk/velocity-log-commons-logging/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
velocity/sandbox/maven-reorg/engine/trunk/velocity-log-commons-logging/pom.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL