You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@velocity.apache.org by ap...@apache.org on 2010/07/26 15:19:39 UTC

svn commit: r979270 - in /velocity/sandbox/maven-reorg/dvsl/trunk: ./ velocity-dvsl/ velocity-dvsl/src/ velocity-dvsl/src/main/ velocity-dvsl/src/main/java/ velocity-dvsl/src/main/resources/ velocity-dvsl/src/test/ velocity-dvsl/src/test/java/ velocity...

Author: apetrelli
Date: Mon Jul 26 13:19:38 2010
New Revision: 979270

URL: http://svn.apache.org/viewvc?rev=979270&view=rev
Log:
VELOCITYSB-8
Created the module for DVSL main library.

Added:
    velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl/   (with props)
    velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl/pom.xml   (with props)
    velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl/src/
    velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl/src/main/
    velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl/src/main/java/
    velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl/src/main/resources/
    velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl/src/test/
    velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl/src/test/java/
    velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl/src/test/resources/
Modified:
    velocity/sandbox/maven-reorg/dvsl/trunk/pom.xml

Modified: velocity/sandbox/maven-reorg/dvsl/trunk/pom.xml
URL: http://svn.apache.org/viewvc/velocity/sandbox/maven-reorg/dvsl/trunk/pom.xml?rev=979270&r1=979269&r2=979270&view=diff
==============================================================================
--- velocity/sandbox/maven-reorg/dvsl/trunk/pom.xml (original)
+++ velocity/sandbox/maven-reorg/dvsl/trunk/pom.xml Mon Jul 26 13:19:38 2010
@@ -1,290 +1,162 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
-<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements.  See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership.  The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License.  You may obtain a copy of the License at
-
-   http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied.  See the License for the
- specific language governing permissions and limitations
- under the License.    
--->
-
-<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>
-
-  <groupId>org.apache.dvsl</groupId>
-  <artifactId>dvsl</artifactId>
-  <version>1.0-SNAPSHOT</version>
-
-  <name>DVSL</name>
-  <url>http://velocity.apache.org/dvsl/devel/</url>
-  <description>DVSL (Declarative Velocity Style Language) is an XML transformation tool that uses Xpath and VTL</description>
-  <inceptionYear>2002</inceptionYear>
-  <packaging>pom</packaging>
-
-  <organization>
-    <name>The Apache Software Foundation</name>
-    <url>http://www.apache.org/</url>
-  </organization>
-
-  <build>
-    <defaultGoal>install</defaultGoal>
-    <sourceDirectory>src/java</sourceDirectory>
-    <testSourceDirectory>src/test</testSourceDirectory>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-site-plugin</artifactId>
-        <configuration>
-          <inputEncoding>UTF-8</inputEncoding>
-          <outputEncoding>UTF-8</outputEncoding>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-
-  <licenses>
-    <license>
-      <name>The Apache Software License, Version 2.0</name>
-      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-      <distribution>repo</distribution>
-    </license>
-  </licenses>
-
-  <repositories>
-    <repository>
-      <id>apache.snapshots</id>
-      <name>Apache Snapshot Repository</name>
-      <url>http://people.apache.org/repo/m2-snapshot-repository</url>
-      <releases>
-        <enabled>false</enabled>
-      </releases>
-    </repository>
-  </repositories>
-
-  <distributionManagement>
-    <site>
-      <id>velocity.apache.org</id>
-      <url>scpexe://people.apache.org/www/velocity.apache.org/dvsl/devel/</url>
-    </site>
-    <repository>
-      <id>apache.releases</id>
-      <name>Apache Release Distribution Repository</name>
-      <url>scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url>
-    </repository>
-    <snapshotRepository>
-      <id>apache.snapshots</id>
-      <name>Apache Development Snapshot Repository</name>
-      <url>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
-    </snapshotRepository>
-  </distributionManagement>
-
-  <developers>
-    <developer>
-      <name>Will Glass-Husain</name>
-      <id>wglass</id>
-      <email>wglass@forio.com</email>
-      <organization>Forio Business Simulations</organization>
-      <roles>
-        <role>Java Developer</role>
-      </roles>
-    </developer>
-
-   <developer>
-      <name>Geir Magnusson Jr.</name>
-      <id>geirm</id>
-      <email>geirm@optonline.net</email>
-      <organization>Independent</organization>
-      <roles>
-        <role>Java Developer</role>
-      </roles>
-    </developer>
-
-    <developer>
-      <name>Daniel Rall</name>
-      <id>dlr</id>
-      <email>dlr@finemaltcoding.com</email>
-      <organization>CollabNet, Inc.</organization>
-      <roles>
-        <role>Java Developer</role>
-      </roles>
-    </developer>
-
-    <developer>
-      <name>Henning P. Schmiedehausen</name>
-      <id>henning</id>
-      <email>hps@intermeta.de</email>
-      <organization>INTERMETA - Gesellschaft für Mehrwertdienste mbH</organization>
-      <roles>
-        <role>Java Developer</role>
-      </roles>
-      <timezone>2</timezone>
-    </developer>
-
-    <developer>
-      <name>Nathan Bubna</name>
-      <id>nbubna</id>
-      <email>nathan@esha.com</email>
-      <organization>ESHA Research</organization>
-      <roles>
-        <role>Java Developer</role>
-      </roles>
-    </developer>
-
-    <developer>
-      <name>Claude Brisson</name>
-      <id>cbrisson</id>
-      <email>cbrisson@renegat.net</email>
-      <organization>freelance</organization>
-      <roles>
-        <role>Java Developer</role>
-      </roles>
-    </developer>
-
-  </developers>
-
-  <dependencies>
-    <dependency>
-      <groupId>commons-collections</groupId>
-      <artifactId>commons-collections</artifactId>
-      <version>3.2</version>
-    </dependency>
-    <dependency>
-      <groupId>commons-lang</groupId>
-      <artifactId>commons-lang</artifactId>
-      <version>2.3</version>
-    </dependency>
-    <dependency>
-      <groupId>crimson</groupId>
-      <artifactId>crimson</artifactId>
-      <version>1.1.3</version>
-    </dependency>
-    <dependency>
-      <groupId>dom4j</groupId>
-      <artifactId>dom4j</artifactId>
-      <version>1.6.1</version>
-    </dependency>
-    <dependency>
-      <groupId>jaxen</groupId>
-      <artifactId>jaxen</artifactId>
-      <version>1.1.1</version>
-    </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>4.3.1</version>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
-      <groupId>oro</groupId>
-      <artifactId>oro</artifactId>
-      <version>2.0.8</version>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.velocity</groupId>
-      <artifactId>velocity</artifactId>
-      <version>1.5</version>
-    </dependency>
-    <dependency>
-      <groupId>xalan</groupId>
-      <artifactId>xalan</artifactId>
-      <version>2.7.0</version>
-      <scope>provided</scope>
-    </dependency>
-  </dependencies>
-
-  <reporting>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-project-info-reports-plugin</artifactId>
-        <reportSets>
-          <reportSet>
-            <reports>
-              <report>dependencies</report>
-              <report>issue-tracking</report>
-              <report>license</report>
-              <report>summary</report>
-              <report>scm</report>
-            </reports>
-          </reportSet>
-        </reportSets>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-changes-plugin</artifactId>
-        <reportSets>
-          <reportSet>
-            <reports>
-              <report>changes-report</report>
-              <report>jira-report</report>
-            </reports>
-          </reportSet>
-        </reportSets>
-        <configuration>
-          <!-- no FixFor yet. -->
-          <filter>sorter/field=issuekey&amp;sorter/order=ASC</filter>
-          <maxEntries>100</maxEntries>
-          <teamlist>http://velocity.apache.org/who-we-are.html</teamlist>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>taglist-maven-plugin</artifactId>
-        <configuration>
-          <tag>TODO</tag>
-          <tag>FIXME</tag>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-jxr-plugin</artifactId>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-javadoc-plugin</artifactId>
-        <configuration>
-          <links>
-            <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
-            <link>http://jakarta.apache.org/commons/lang/api-release</link>
-            <link>http://jakarta.apache.org/commons/collections/api-release</link>
-            <link>http://www.jdom.org/docs/apidocs</link>
-            <link>http://logging.apache.org/log4j/docs/api</link>
-            <link>http://excalibur.apache.org/apidocs</link>
-            <link>http://velocity.apache.org/engine/releases/velocity-1.5/apidocs</link>
-          </links>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-changelog-plugin</artifactId>
-      </plugin>
-    </plugins>
-  </reporting>
-
-  <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/velocity/dvsl/trunk</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/velocity/dvsl/trunk</developerConnection>
-    <tag>HEAD</tag>
-    <url>http://svn.apache.org/viewvc/velocity/dvsl/trunk</url>
-  </scm>
-
-  <issueManagement>
-    <system>JIRA</system>
-    <url>https://issues.apache.org/jira/browse/DVSL</url>
-  </issueManagement>
+<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
+    license agreements. See the NOTICE file distributed with this work for additional
+    information regarding copyright ownership. The ASF licenses this file to
+    you under the Apache License, Version 2.0 (the "License"); you may not use
+    this file except in compliance with the License. You may obtain a copy of
+    the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
+    by applicable law or agreed to in writing, software distributed under the
+    License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
+    OF ANY KIND, either express or implied. See the License for the specific
+    language governing permissions and limitations under the License. -->
+
+<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">
+
+    <parent>
+        <artifactId>velocity-master</artifactId>
+        <groupId>org.apache.velocity</groupId>
+        <version>1-SNAPSHOT</version>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+
+    <groupId>org.apache.velocity</groupId>
+    <artifactId>velocity-dvsl-parent</artifactId>
+    <version>1.1.0-SNAPSHOT</version>
+
+    <name>DVSL</name>
+    <url>http://velocity.apache.org/dvsl/devel/</url>
+    <description>DVSL (Declarative Velocity Style Language) is an XML transformation tool that uses Xpath and VTL</description>
+    <inceptionYear>2002</inceptionYear>
+    <packaging>pom</packaging>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <inputEncoding>UTF-8</inputEncoding>
+                    <outputEncoding>UTF-8</outputEncoding>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <distributionManagement>
+        <site>
+            <id>velocity.apache.org</id>
+            <url>scpexe://people.apache.org/www/velocity.apache.org/dvsl/devel/</url>
+        </site>
+    </distributionManagement>
+
+    <!-- <dependencies> <dependency> <groupId>commons-collections</groupId>
+        <artifactId>commons-collections</artifactId> <version>3.2</version> </dependency>
+        <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId>
+        <version>2.3</version> </dependency> <dependency> <groupId>crimson</groupId>
+        <artifactId>crimson</artifactId> <version>1.1.3</version> </dependency> <dependency>
+        <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.6.1</version>
+        </dependency> <dependency> <groupId>jaxen</groupId> <artifactId>jaxen</artifactId>
+        <version>1.1.1</version> </dependency> <dependency> <groupId>junit</groupId>
+        <artifactId>junit</artifactId> <version>4.3.1</version> <scope>provided</scope>
+        </dependency> <dependency> <groupId>oro</groupId> <artifactId>oro</artifactId>
+        <version>2.0.8</version> <scope>provided</scope> </dependency> <dependency>
+        <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId>
+        <version>1.5</version> </dependency> <dependency> <groupId>xalan</groupId>
+        <artifactId>xalan</artifactId> <version>2.7.0</version> <scope>provided</scope>
+        </dependency> </dependencies> -->
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-changes-plugin</artifactId>
+                <reportSets>
+                    <reportSet>
+                        <reports>
+                            <report>changes-report</report>
+                            <!-- <report>jira-report</report> -->
+                        </reports>
+                    </reportSet>
+                </reportSets>
+                <configuration>
+                    <!-- no FixFor yet. -->
+                    <filter>sorter/field=issuekey&amp;sorter/order=ASC</filter>
+                    <maxEntries>100</maxEntries>
+                    <teamlist>http://velocity.apache.org/who-we-are.html</teamlist>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>taglist-maven-plugin</artifactId>
+                <configuration>
+                    <tag>TODO</tag>
+                    <tag>FIXME</tag>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jxr-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <version>2.7</version>
+                <configuration>
+                    <links>
+                        <link>http://java.sun.com/j2se/1.5.0/docs/api/
+                        </link>
+                        <link>http://jakarta.apache.org/oro/api</link>
+                        <link>http://commons.apache.org/lang/api-release/
+                        </link>
+                        <link>http://commons.apache.org/collections/api-release/
+                        </link>
+                        <link>http://logging.apache.org/log4j/1.2/apidocs/
+                        </link>
+                        <link>http://excalibur.apache.org/apidocs</link>
+                        <link>http://tomcat.apache.org/tomcat-4.1-doc/servletapi/
+                        </link>
+                    </links>
+                </configuration>
+                <reportSets>
+                    <reportSet>
+                        <id>non-aggregate</id>
+                        <reports>
+                            <report>javadoc</report>
+                        </reports>
+                    </reportSet>
+                    <reportSet>
+                        <id>aggregated</id>
+                        <reports>
+                            <report>aggregate</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-changelog-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </reporting>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/velocity/dvsl/trunk</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/velocity/dvsl/trunk</developerConnection>
+        <tag>HEAD</tag>
+        <url>http://svn.apache.org/viewvc/velocity/dvsl/trunk</url>
+    </scm>
+
+    <issueManagement>
+        <system>JIRA</system>
+        <url>https://issues.apache.org/jira/browse/DVSL</url>
+    </issueManagement>
+    <modules>
+    	<module>velocity-dvsl</module>
+    </modules>
 </project>

Propchange: velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Jul 26 13:19:38 2010
@@ -0,0 +1,2 @@
+target
+.*

Added: velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl/pom.xml
URL: http://svn.apache.org/viewvc/velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl/pom.xml?rev=979270&view=auto
==============================================================================
--- velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl/pom.xml (added)
+++ velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl/pom.xml Mon Jul 26 13:19:38 2010
@@ -0,0 +1,13 @@
+<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/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <artifactId>velocity-dvsl-parent</artifactId>
+    <groupId>org.apache.velocity</groupId>
+    <version>1.1.0-SNAPSHOT</version>
+  </parent>
+  <groupId>org.apache.velocity</groupId>
+  <artifactId>velocity-dvsl</artifactId>
+  <version>1.1.0-SNAPSHOT</version>
+  <name>Apache Velocity DVSL</name>
+  <description>DVSL core library</description>
+</project>
\ No newline at end of file

Propchange: velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL