[utilities COMMIT] in /java-support/trunk: pom.xml src/main/java/net/shibboleth/utilities/java/support/velocity/ src/...
noreply at shibboleth.net
noreply at shibboleth.net
Mon Feb 6 14:17:56 GMT 2012
Author: lajoie
Date: Mon Feb 6 14:17:56 2012
New Revision: 228
URL: http://svn.shibboleth.net/view/utilities?rev=228&view=rev
Log:
Add a helper class for velocity templates
Added:
java-support/trunk/src/main/java/net/shibboleth/utilities/java/support/velocity/
java-support/trunk/src/main/java/net/shibboleth/utilities/java/support/velocity/Template.java (with props)
java-support/trunk/src/main/java/net/shibboleth/utilities/java/support/velocity/package-info.java (with props)
Modified:
java-support/trunk/pom.xml
Modified: java-support/trunk/pom.xml
URL: http://svn.shibboleth.net/view/utilities/java-support/trunk/pom.xml?rev=228&r1=227&r2=228&view=diff
==============================================================================
--- java-support/trunk/pom.xml (original)
+++ java-support/trunk/pom.xml Mon Feb 6 14:17:56 2012
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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">
+<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>
@@ -19,10 +19,8 @@
<dependencies>
<!-- Compile Dependencies -->
<dependency>
- <!-- Required by RandomIdentifierGenerationStrategy -->
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
- <optional>true</optional>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
@@ -32,6 +30,12 @@
<!-- Required if you're using the HttpResource or HttpClientBuilder -->
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <!-- Required if you're using classes from the velocity package -->
+ <groupId>org.apache.velocity</groupId>
+ <artifactId>velocity</artifactId>
<optional>true</optional>
</dependency>
@@ -49,7 +53,7 @@
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
-
+
</dependencies>
-
+
</project>
More information about the commits
mailing list