svn commit: r1065002 - /struts/struts2/trunk/xwork-core/pom.xml

2011-01-29 Thread mcucchiara
Author: mcucchiara
Date: Sat Jan 29 11:49:34 2011
New Revision: 1065002

URL: http://svn.apache.org/viewvc?rev=1065002&view=rev
Log:
WW-3549 - Shaded FileUtils

Modified:
struts/struts2/trunk/xwork-core/pom.xml

Modified: struts/struts2/trunk/xwork-core/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/xwork-core/pom.xml?rev=1065002&r1=1065001&r2=1065002&view=diff
==
--- struts/struts2/trunk/xwork-core/pom.xml (original)
+++ struts/struts2/trunk/xwork-core/pom.xml Sat Jan 29 11:49:34 2011
@@ -152,7 +152,7 @@
 
 org.apache.maven.plugins
 maven-shade-plugin
-1.2
+1.4
 
 
 package
@@ -219,7 +219,7 @@
 
org.apache.commons.lang.xwork
 
 
-org.apache.commons.lang
+org.apache.commons.io
 
org.apache.commons.io.xwork
 
 
@@ -236,7 +236,7 @@
 maven-bundle-plugin
 
 
-
org.apache.commons.lang.xwork.*,com.opensymphony.xwork2.*
+
org.apache.commons.lang.xwork.*,org.apache.commons.io.xwork.*,com.opensymphony.xwork2.*
 
 
 




svn commit: r1065090 - in /struts/struts2/trunk: apps/portlet/pom.xml apps/showcase/pom.xml core/src/test/java/org/apache/struts2/interceptor/FileUploadInterceptorTest.java pom.xml

2011-01-29 Thread mcucchiara
Author: mcucchiara
Date: Sat Jan 29 18:39:22 2011
New Revision: 1065090

URL: http://svn.apache.org/viewvc?rev=1065090&view=rev
Log:
Upgraded commons-io and commons-fileupload and removed redundant dependencies

Modified:
struts/struts2/trunk/apps/portlet/pom.xml
struts/struts2/trunk/apps/showcase/pom.xml

struts/struts2/trunk/core/src/test/java/org/apache/struts2/interceptor/FileUploadInterceptorTest.java
struts/struts2/trunk/pom.xml

Modified: struts/struts2/trunk/apps/portlet/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/apps/portlet/pom.xml?rev=1065090&r1=1065089&r2=1065090&view=diff
==
--- struts/struts2/trunk/apps/portlet/pom.xml (original)
+++ struts/struts2/trunk/apps/portlet/pom.xml Sat Jan 29 18:39:22 2011
@@ -105,11 +105,6 @@
 
 
 org.apache.struts
-struts2-core
-${pom.version}
-
-
-org.apache.struts
 struts2-portlet-plugin
 ${pom.version}
 

Modified: struts/struts2/trunk/apps/showcase/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/apps/showcase/pom.xml?rev=1065090&r1=1065089&r2=1065090&view=diff
==
--- struts/struts2/trunk/apps/showcase/pom.xml (original)
+++ struts/struts2/trunk/apps/showcase/pom.xml Sat Jan 29 18:39:22 2011
@@ -182,7 +182,6 @@
 
 commons-fileupload
 commons-fileupload
-1.1.1
 
 
 

Modified: 
struts/struts2/trunk/core/src/test/java/org/apache/struts2/interceptor/FileUploadInterceptorTest.java
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/test/java/org/apache/struts2/interceptor/FileUploadInterceptorTest.java?rev=1065090&r1=1065089&r2=1065090&view=diff
==
--- 
struts/struts2/trunk/core/src/test/java/org/apache/struts2/interceptor/FileUploadInterceptorTest.java
 (original)
+++ 
struts/struts2/trunk/core/src/test/java/org/apache/struts2/interceptor/FileUploadInterceptorTest.java
 Sat Jan 29 18:39:22 2011
@@ -253,7 +253,7 @@ public class FileUploadInterceptorTest e
 mai.setInvocationContext(ActionContext.getContext());
 Map param = new HashMap();
 ActionContext.getContext().setParameters(param);
-ActionContext.getContext().put(ServletActionContext.HTTP_REQUEST, 
createMultipartRequest((HttpServletRequest) req, 2000));
+ActionContext.getContext().put(ServletActionContext.HTTP_REQUEST, 
createMultipartRequest(req, 2000));
 
 interceptor.intercept(mai);
 

Modified: struts/struts2/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/pom.xml?rev=1065090&r1=1065089&r2=1065090&view=diff
==
--- struts/struts2/trunk/pom.xml (original)
+++ struts/struts2/trunk/pom.xml Sat Jan 29 18:39:22 2011
@@ -462,12 +462,12 @@
 
 commons-fileupload
 commons-fileupload
-1.2.1
+1.2.2
 
 
 commons-io
 commons-io
-1.4
+2.0.1
 
 
 commons-lang




svn commit: r1065111 - /struts/struts2/trunk/xwork-core/pom.xml

2011-01-29 Thread mcucchiara
Author: mcucchiara
Date: Sat Jan 29 21:17:10 2011
New Revision: 1065111

URL: http://svn.apache.org/viewvc?rev=1065111&view=rev
Log:
WW-3549 rollback to the previous version

Modified:
struts/struts2/trunk/xwork-core/pom.xml

Modified: struts/struts2/trunk/xwork-core/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/xwork-core/pom.xml?rev=1065111&r1=1065110&r2=1065111&view=diff
==
--- struts/struts2/trunk/xwork-core/pom.xml (original)
+++ struts/struts2/trunk/xwork-core/pom.xml Sat Jan 29 21:17:10 2011
@@ -219,7 +219,7 @@
 
org.apache.commons.lang.xwork
 
 
-org.apache.commons.io
+org.apache.commons.lang
 
org.apache.commons.io.xwork
 
 
@@ -236,7 +236,7 @@
 maven-bundle-plugin
 
 
-
org.apache.commons.lang.xwork.*,org.apache.commons.io.xwork.*,com.opensymphony.xwork2.*
+
org.apache.commons.lang.xwork.*,com.opensymphony.xwork2.*
 
 
 




[CONF] Confluence Changes in the last 24 hours

2011-01-29 Thread confluence
This is a daily summary of all recent changes in Confluence.

-
Updated Spaces:
-


Apache Connectors Framework 
(https://cwiki.apache.org/confluence/display/CONNECTORS)

Comments
https://cwiki.apache.org/confluence/display/CONNECTORS/FAQ (1)

Apache Geronimo v3.0 (https://cwiki.apache.org/confluence/display/GMOxDOC30)

Pages
-
Using the Geronimo database pool wizard edited by  maojia508  (10:34 PM)
https://cwiki.apache.org/confluence/display/GMOxDOC30/Using+the+Geronimo+database+pool+wizard

geronimo-web.xml edited by  chirun...@gmail.com  (10:25 PM)
https://cwiki.apache.org/confluence/display/GMOxDOC30/geronimo-web.xml

Removing database pools edited by  maojia508  (09:20 PM)
https://cwiki.apache.org/confluence/display/GMOxDOC30/Removing+database+pools

Apache Geronimo v3.0 documentation development status edited by  
chirun...@gmail.com  (09:17 PM)
https://cwiki.apache.org/confluence/display/GMOxDOC30/Apache+Geronimo+v3.0+documentation+development+status

Import database pools from WebLogic 8.1 edited by  maojia508  (08:55 PM)
https://cwiki.apache.org/confluence/display/GMOxDOC30/Import+database+pools+from+WebLogic+8.1



OFBiz (Open For Business) Project Open Wiki 
(https://cwiki.apache.org/confluence/display/OFBIZ)

Pages
-
Main New Features edited by  mrisaliti  (02:18 PM)
https://cwiki.apache.org/confluence/display/OFBIZ/Main+New+Features



Apache Roller (https://cwiki.apache.org/confluence/display/ROLLER)

Pages
-
Build and Run Roller 5 in Eclipse created by snoopdave (11:22 AM)
https://cwiki.apache.org/confluence/display/ROLLER/Build+and+Run+Roller+5+in+Eclipse

How to build Roller edited by  snoopdave  (09:42 AM)
https://cwiki.apache.org/confluence/display/ROLLER/How+to+build+Roller



Traffic Server (https://cwiki.apache.org/confluence/display/TS)

Pages
-
Continuous Integration edited by  zwoop  (01:06 PM)
https://cwiki.apache.org/confluence/display/TS/Continuous+Integration



Apache Whirr (https://cwiki.apache.org/confluence/display/WHIRR)

Pages
-
How To Release edited by  tomwhite  (08:01 PM)
https://cwiki.apache.org/confluence/display/WHIRR/How+To+Release



Apache Wicket (https://cwiki.apache.org/confluence/display/WICKET)

Pages
-
Creating Custom FormComponentPanel's to build valid objects using Wicket's Form 
Validation Logic created by michael.ocleir...@rivulet.ca (08:00 PM)
https://cwiki.apache.org/confluence/display/WICKET/Creating+Custom+FormComponentPanel%27s+to+build+valid+objects+using+Wicket%27s+Form+Validation+Logic




Change your notification preferences: 
https://cwiki.apache.org/confluence/users/viewnotifications.action