Author: apetrelli
Date: Mon Jul 26 14:26:19 2010
New Revision: 979304
URL: http://svn.apache.org/viewvc?rev=979304&view=rev
Log:
VELOCITYSB-8
Created uberjar module for DVSL.
Added:
velocity/sandbox/maven-reorg/dvsl/trunk/src/etc/
velocity/sandbox/maven-reorg/dvsl/trunk/src/etc/examples/
- copied from r979301, velocity/sandbox/maven-reorg/dvsl/trunk/examples/
velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl-uberjar/ (with
props)
velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl-uberjar/pom.xml
(with props)
Removed:
velocity/sandbox/maven-reorg/dvsl/trunk/examples/
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=979304&r1=979303&r2=979304&view=diff
==============================================================================
--- velocity/sandbox/maven-reorg/dvsl/trunk/pom.xml (original)
+++ velocity/sandbox/maven-reorg/dvsl/trunk/pom.xml Mon Jul 26 14:26:19 2010
@@ -151,5 +151,6 @@
<modules>
<module>velocity-dvsl-core</module>
<module>velocity-dvsl-ant</module>
+ <module>velocity-dvsl-uberjar</module>
</modules>
</project>
Propchange: velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl-uberjar/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Jul 26 14:26:19 2010
@@ -0,0 +1,2 @@
+target
+.*
Added: velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl-uberjar/pom.xml
URL:
http://svn.apache.org/viewvc/velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl-uberjar/pom.xml?rev=979304&view=auto
==============================================================================
--- velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl-uberjar/pom.xml
(added)
+++ velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl-uberjar/pom.xml Mon
Jul 26 14:26:19 2010
@@ -0,0 +1,51 @@
+<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-uberjar</artifactId>
+ <version>1.1.0-SNAPSHOT</version>
+ <name>Apache Velocity DVSL - Uberjar</name>
+ <description>Collects all DVSL jars in one.</description>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-shade-plugin</artifactId>
+ <version>1.3.3</version>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>shade</goal>
+ </goals>
+ <configuration>
+ <artifactSet>
+ <includes>
+
<include>org.apache.velocity:velocity-dvsl-core</include>
+
<include>org.apache.velocity:velocity-dvsl-ant</include>
+ </includes>
+ </artifactSet>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.velocity</groupId>
+ <artifactId>velocity-dvsl-core</artifactId>
+ <version>1.1.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.velocity</groupId>
+ <artifactId>velocity-dvsl-ant</artifactId>
+ <version>1.1.0-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+</project>
\ No newline at end of file
Propchange:
velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl-uberjar/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
velocity/sandbox/maven-reorg/dvsl/trunk/velocity-dvsl-uberjar/pom.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL