From 8c2dfbd3676ecf7400afaf28994c37ae10de71e4 Mon Sep 17 00:00:00 2001 From: Ted Nathan Husted Date: Wed, 31 Oct 2007 01:24:43 +0000 Subject: [PATCH] WW-1789, WW-2279 Update velocity to 1.5, velocity-tools to 1.3, and Spring to 2.0.7. Apply one-line change to VelocityManager suggested by Rod Vagg. git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@590528 13f79535-47bb-0310-9956-ffa450edef68 --- apps/blank/pom.xml | 2 +- apps/pom.xml | 2 +- apps/portlet/pom.xml | 4 +- apps/showcase/pom.xml | 4 +- assembly/pom.xml | 14 ++--- core/pom.xml | 8 +-- .../views/velocity/VelocityManager.java | 12 ++--- plugins/codebehind/pom.xml | 4 +- plugins/dojo/pom.xml | 6 +-- plugins/portlet/pom.xml | 52 +++++++++---------- plugins/sitegraph/pom.xml | 4 +- plugins/sitemesh/pom.xml | 4 +- plugins/spring/pom.xml | 10 ++-- plugins/struts1/pom.xml | 4 +- 14 files changed, 65 insertions(+), 65 deletions(-) diff --git a/apps/blank/pom.xml b/apps/blank/pom.xml index 62c4bcfd9..645433168 100644 --- a/apps/blank/pom.xml +++ b/apps/blank/pom.xml @@ -59,7 +59,7 @@ org.springframework spring-core - 2.0.1 + 2.0.7 test diff --git a/apps/pom.xml b/apps/pom.xml index 77d1093ea..535c32cab 100644 --- a/apps/pom.xml +++ b/apps/pom.xml @@ -192,7 +192,7 @@ org.springframework spring-mock - 2.0.1 + 2.0.7 test diff --git a/apps/portlet/pom.xml b/apps/portlet/pom.xml index 3fa240c5d..86de44ab9 100644 --- a/apps/portlet/pom.xml +++ b/apps/portlet/pom.xml @@ -96,13 +96,13 @@ velocity velocity - 1.4 + 1.5 velocity-tools velocity-tools - 1.1 + 1.3 commons-digester diff --git a/apps/showcase/pom.xml b/apps/showcase/pom.xml index d8b5d3487..536d67498 100644 --- a/apps/showcase/pom.xml +++ b/apps/showcase/pom.xml @@ -120,13 +120,13 @@ velocity velocity - 1.4 + 1.5 velocity-tools velocity-tools - 1.1 + 1.3 diff --git a/assembly/pom.xml b/assembly/pom.xml index 76f8c03d5..730ce3c4e 100644 --- a/assembly/pom.xml +++ b/assembly/pom.xml @@ -258,14 +258,14 @@ velocity velocity - 1.4 + 1.5 provided velocity-tools velocity-tools - 1.1 + 1.3 provided @@ -391,35 +391,35 @@ org.springframework spring-beans - 1.2.8 + 2.0.7 provided org.springframework spring-core - 1.2.8 + 2.0.7 provided org.springframework spring-context - 1.2.8 + 2.0.7 provided org.springframework spring-web - 1.2.8 + 2.0.7 provided org.springframework spring-mock - 1.2.8 + 2.0.7 provided diff --git a/core/pom.xml b/core/pom.xml index 493a34ad9..b410361b6 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -338,14 +338,14 @@ velocity velocity - 1.4 + 1.5 true velocity-tools velocity-tools - 1.1 + 1.3 true @@ -374,14 +374,14 @@ org.springframework spring-mock - 1.2.8 + 2.0.7 true org.springframework spring-core - 1.2.8 + 2.0.7 test diff --git a/core/src/main/java/org/apache/struts2/views/velocity/VelocityManager.java b/core/src/main/java/org/apache/struts2/views/velocity/VelocityManager.java index f8783c670..c3b64e177 100644 --- a/core/src/main/java/org/apache/struts2/views/velocity/VelocityManager.java +++ b/core/src/main/java/org/apache/struts2/views/velocity/VelocityManager.java @@ -96,17 +96,17 @@ public class VelocityManager { private Properties velocityProperties; private String customConfigFile; - + private List tagLibraries; - + public VelocityManager() { } - + @Inject public void setObjectFactory(ObjectFactory fac) { this.objectFactory = fac; } - + @Inject public void setContainer(Container container) { List list = new ArrayList(); @@ -190,7 +190,7 @@ public class VelocityManager { if (toolboxManager != null && ctx != null) { ChainedContext chained = new ChainedContext(context, req, res, ctx); - chained.setToolbox(toolboxManager.getToolboxContext(chained)); + chained.setToolbox(toolboxManager.getToolbox(chained)); return chained; } else { return context; @@ -539,7 +539,7 @@ public class VelocityManager { // components StringBuffer sb = new StringBuffer(); - + for (TagLibrary tagLibrary : tagLibraries) { List directives = tagLibrary.getVelocityDirectiveClasses(); for (Class directive : directives) { diff --git a/plugins/codebehind/pom.xml b/plugins/codebehind/pom.xml index 8d1f6ec4e..93bfebaf7 100644 --- a/plugins/codebehind/pom.xml +++ b/plugins/codebehind/pom.xml @@ -56,13 +56,13 @@ org.springframework spring-mock - 1.2.8 + 2.0.7 test org.springframework spring-core - 1.2.8 + 2.0.7 test diff --git a/plugins/dojo/pom.xml b/plugins/dojo/pom.xml index 314c07d95..f5c5b6c0b 100644 --- a/plugins/dojo/pom.xml +++ b/plugins/dojo/pom.xml @@ -102,7 +102,7 @@ velocity velocity - 1.4 + 1.5 true @@ -196,14 +196,14 @@ org.springframework spring-mock - 1.2.8 + 2.0.7 true org.springframework spring-core - 1.2.8 + 2.0.7 test diff --git a/plugins/portlet/pom.xml b/plugins/portlet/pom.xml index 490cd74bb..3c721301d 100644 --- a/plugins/portlet/pom.xml +++ b/plugins/portlet/pom.xml @@ -1,26 +1,26 @@ - + 4.0.0 @@ -59,14 +59,14 @@ velocity velocity - 1.4 + 1.5 true velocity-tools velocity-tools - 1.1 + 1.3 true @@ -123,13 +123,13 @@ org.springframework spring-mock - 2.0.6 + 2.0.7 test org.springframework spring-core - 2.0.6 + 2.0.7 test diff --git a/plugins/sitegraph/pom.xml b/plugins/sitegraph/pom.xml index 3acca652c..d87c16d96 100644 --- a/plugins/sitegraph/pom.xml +++ b/plugins/sitegraph/pom.xml @@ -148,7 +148,7 @@ org.springframework spring-core - 1.2.8 + 2.0.7 test @@ -156,7 +156,7 @@ org.springframework spring-mock - 1.2.8 + 2.0.7 test diff --git a/plugins/sitemesh/pom.xml b/plugins/sitemesh/pom.xml index cba2c906b..94d8f80a9 100644 --- a/plugins/sitemesh/pom.xml +++ b/plugins/sitemesh/pom.xml @@ -50,14 +50,14 @@ velocity velocity - 1.4 + 1.5 true velocity-tools velocity-tools - 1.1 + 1.3 true diff --git a/plugins/spring/pom.xml b/plugins/spring/pom.xml index cbf48a8fb..40dcce700 100644 --- a/plugins/spring/pom.xml +++ b/plugins/spring/pom.xml @@ -44,31 +44,31 @@ org.springframework spring-beans - 2.0.1 + 2.0.7 org.springframework spring-core - 2.0.1 + 2.0.7 org.springframework spring-context - 2.0.1 + 2.0.7 org.springframework spring-web - 2.0.1 + 2.0.7 org.springframework spring-mock - 2.0.1 + 2.0.7 test diff --git a/plugins/struts1/pom.xml b/plugins/struts1/pom.xml index 89bdf6952..7790ad5f5 100644 --- a/plugins/struts1/pom.xml +++ b/plugins/struts1/pom.xml @@ -58,14 +58,14 @@ org.springframework spring-mock - 1.2.8 + 2.0.7 true org.springframework spring-core - 1.2.8 + 2.0.7 test