[CONF] Confluence Changes in the last 24 hours

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

-
Updated Spaces:
-

Apache Camel (CAMEL) http://cwiki.apache.org/confluence/display/CAMEL
|
|-Pages Added or Edited in This Space
 |-- Restlet was created by wtam (09:33 AM).
 |   http://cwiki.apache.org/confluence/display/CAMEL/Restlet
 |-- Camel 2.0.0 Release was last edited by wtam (10:18 AM).
 |   http://cwiki.apache.org/confluence/display/CAMEL/Camel+2.0.0+Release
 |-- Camel 1.5.1 Release was last edited by wtam (10:16 AM).
 |   http://cwiki.apache.org/confluence/display/CAMEL/Camel+1.5.1+Release
 |-- Component List was last edited by wtam (09:51 AM).
 |   http://cwiki.apache.org/confluence/display/CAMEL/Component+List

Apache Qpid (qpid) http://cwiki.apache.org/confluence/display/qpid
|
|-Pages Added or Edited in This Space
 |-- LVQ was last edited by cctrieloff (07:02 PM).
 |   http://cwiki.apache.org/confluence/display/qpid/LVQ

Apache ESME (ESME) http://cwiki.apache.org/confluence/display/ESME
|
|-Pages Added or Edited in This Space
 |-- Index was created by dkulp (10:25 AM).
 |   http://cwiki.apache.org/confluence/display/ESME/Index

Apache CXF (CXF) http://cwiki.apache.org/confluence/display/CXF
|
|-Pages Added or Edited in This Space
 |-- Resources and Articles was last edited by mazzag (02:25 PM).
 |   http://cwiki.apache.org/confluence/display/CXF/Resources+and+Articles


-
CONFLUENCE INFORMATION
This message is automatically generated by Confluence

Unsubscribe or edit your notifications preferences
   http://cwiki.apache.org/confluence/users/viewnotifications.action

If you think it was sent incorrectly contact one of the administrators
   http://cwiki.apache.org/confluence/administrators.action

If you want more information on Confluence, or have a bug to report see
   http://www.atlassian.com/software/confluence




Issues Closed: week of 2009-01-02

2009-01-02 Thread dblevins

Struts2 - Friday, January 2, 2009

  5 closed in last 7 days

[WW-2936] Document change in REST plugin
  - Type: Bug
  - Assignee: Unassigned
  - Components: []
  - Fix Versions: [2.1.4]
  - http://issues.apache.org/struts/browse/WW-2936

[WW-2941] Runtime error while using openEJB3.1
  - Type: Temp
  - Assignee: Unassigned
  - Components: [Other]
  - Fix Versions: []
  - http://issues.apache.org/struts/browse/WW-2941

[WW-2937] Tags fail with NPE in sitemesh decorators, using legacy filters
  - Type: Bug
  - Assignee: Unassigned
  - Components: [Plugin - SiteMesh]
  - Fix Versions: [2.1.4]
  - http://issues.apache.org/struts/browse/WW-2937

[WW-2938] 2.1.4 Omnibus ticket
  - Type: Bug
  - Assignee: Unassigned
  - Components: []
  - Fix Versions: [2.1.4]
  - http://issues.apache.org/struts/browse/WW-2938

[WW-2942] Injection parameters
  - Type: Bug
  - Assignee: Unassigned
  - Components: []
  - Fix Versions: []
  - http://issues.apache.org/struts/browse/WW-2942



svn commit: r730743 - /struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/ServletUrlRenderer.java

2009-01-02 Thread musachy
Author: musachy
Date: Fri Jan  2 06:39:46 2009
New Revision: 730743

URL: http://svn.apache.org/viewvc?rev=730743&view=rev
Log:
WW-2944 when action is not found, use the specified "action" attribute, instead 
of the action name

Modified:

struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/ServletUrlRenderer.java

Modified: 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/ServletUrlRenderer.java
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/ServletUrlRenderer.java?rev=730743&r1=730742&r2=730743&view=diff
==
--- 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/ServletUrlRenderer.java
 (original)
+++ 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/ServletUrlRenderer.java
 Fri Jan  2 06:39:46 2009
@@ -21,6 +21,17 @@
 
 package org.apache.struts2.components;
 
+import com.opensymphony.xwork2.ActionContext;
+import com.opensymphony.xwork2.ActionInvocation;
+import com.opensymphony.xwork2.config.entities.ActionConfig;
+import com.opensymphony.xwork2.inject.Inject;
+import com.opensymphony.xwork2.util.logging.Logger;
+import com.opensymphony.xwork2.util.logging.LoggerFactory;
+import org.apache.struts2.StrutsException;
+import org.apache.struts2.dispatcher.mapper.ActionMapper;
+import org.apache.struts2.dispatcher.mapper.ActionMapping;
+import org.apache.struts2.views.util.UrlHelper;
+
 import java.io.IOException;
 import java.io.Writer;
 import java.util.Collections;
@@ -28,18 +39,6 @@
 import java.util.LinkedHashMap;
 import java.util.Map;
 
-import org.apache.struts2.StrutsException;
-import org.apache.struts2.dispatcher.mapper.ActionMapping;
-import org.apache.struts2.dispatcher.mapper.ActionMapper;
-import org.apache.struts2.views.util.UrlHelper;
-
-import com.opensymphony.xwork2.ActionContext;
-import com.opensymphony.xwork2.ActionInvocation;
-import com.opensymphony.xwork2.inject.Inject;
-import com.opensymphony.xwork2.config.entities.ActionConfig;
-import com.opensymphony.xwork2.util.logging.Logger;
-import com.opensymphony.xwork2.util.logging.LoggerFactory;
-
 /**
  * Implementation of the {...@link UrlRenderer} interface that creates URLs 
suitable in a servlet environment.
  * 
@@ -160,7 +159,7 @@
if (formComponent.getId() == null  && actionName!=null 
) {
formComponent.addParameter("id", 
formComponent.escape(actionName));
}
-   } else if (actionName != null) {
+   } else if (action != null) {
// Since we can't find an action alias in the 
configuration, we just
// assume the action attribute supplied is the path to 
be used as
// the URI this form is submitting to.
@@ -171,7 +170,7 @@
   LOG.warn("No configuration found for the specified action: '" + 
actionName + "' in namespace: '" + namespace + "'. Form action defaulting to 
'action' attribute's literal value.");
 }
 
-   String result = UrlHelper.buildUrl(actionName, 
formComponent.request, formComponent.response, null);
+   String result = UrlHelper.buildUrl(action, 
formComponent.request, formComponent.response, null);
formComponent.addParameter("action", result);
 
// namespace: cut out anything between the start and 
the last /




[OSS Bamboo] Struts 2 SVN - Main Build (Java 6) build 705 has FAILED (0 tests failed). Change made by Musachy Barroso

2009-01-02 Thread bamboo
---
STRUTS-MAINJ6-705 failed.
---
Code has been updated by Musachy Barroso.
No failed tests found, a possible compilation error.

http://opensource.bamboo.atlassian.com/browse/STRUTS-MAINJ6-705/


--
Code Changes
--
Musachy Barroso (730743):

>WW-2944 when action is not found, use the specified "action" attribute, 
>instead of the action name


--
Error Summary
--
   [INFO] 

   [ERROR] BUILD ERROR
   [INFO] 

   [INFO] Unable to find artifact.
   
   Embedded error: Unable to download the artifact from any repository
   
   Try downloading the file manually from the project website.
   
   Then, install it using the command: 
       mvn install:install-file -DgroupId=org.apache.struts 
-DartifactId=struts2-showcase -Dversion=2.1.5-SNAPSHOT -Dpackaging=war 
-Dfile=/path/to/file
   
   Alternatively, if you host your own repository you can deploy the file 
there: 
       mvn deploy:deploy-file -DgroupId=org.apache.struts 
-DartifactId=struts2-showcase -Dversion=2.1.5-SNAPSHOT -Dpackaging=war 
-Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
   
   
     org.apache.struts:struts2-showcase:war:2.1.5-SNAPSHOT
   
   from the specified remote repositories:
     apache.snapshots (http://people.apache.org/maven-snapshot-repository),
     central (https://m2proxy.atlassian.com/repository/public)
   
   [INFO] 

   [INFO] For more information, run Maven with the -e switch


--
This message is automatically generated by Atlassian Bamboo



[OSS Bamboo] Struts 2 SVN - Main Build build 1000 has FAILED (0 tests failed). Change made by Musachy Barroso

2009-01-02 Thread bamboo
---
STRUTS-MAIN-1000 failed.
---
Code has been updated by Musachy Barroso.
No failed tests found, a possible compilation error.

http://opensource.bamboo.atlassian.com/browse/STRUTS-MAIN-1000/


--
Code Changes
--
Musachy Barroso (730743):

>WW-2944 when action is not found, use the specified "action" attribute, 
>instead of the action name


--
Error Summary
--
   [INFO] 

   [ERROR] BUILD ERROR
   [INFO] 

   [INFO] Failed to resolve artifact.
   
   GroupId: org.apache.struts
   ArtifactId: struts2-showcase
   Version: 2.1.5-SNAPSHOT
   
   Reason: Unable to download the artifact from any repository
   
   Try downloading the file manually from the project website.
   
   Then, install it using the command: 
       mvn install:install-file -DgroupId=org.apache.struts 
-DartifactId=struts2-showcase -Dversion=2.1.5-SNAPSHOT -Dpackaging=war 
-Dfile=/path/to/file
   
   Alternatively, if you host your own repository you can deploy the file 
there: 
       mvn deploy:deploy-file -DgroupId=org.apache.struts 
-DartifactId=struts2-showcase -Dversion=2.1.5-SNAPSHOT -Dpackaging=war 
-Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
   
   
     org.apache.struts:struts2-showcase:war:2.1.5-SNAPSHOT
   
   from the specified remote repositories:
     central (https://m2proxy.atlassian.com/repository/public),
     apache.snapshots (http://people.apache.org/maven-snapshot-repository)
   
   
   [INFO] 

   [INFO] For more information, run Maven with the -e switch


--
This message is automatically generated by Atlassian Bamboo



svn commit: r730771 - in /struts/struts2/trunk: ./ apps/ apps/blank/ apps/mailreader/ apps/portlet/ apps/rest-showcase/ apps/showcase/ assembly/ core/ plugins/ plugins/codebehind/ plugins/config-brows

2009-01-02 Thread musachy
Author: musachy
Date: Fri Jan  2 08:27:28 2009
New Revision: 730771

URL: http://svn.apache.org/viewvc?rev=730771&view=rev
Log:
[maven-release-plugin] prepare release STRUTS_2_1_5

Modified:
struts/struts2/trunk/apps/blank/pom.xml
struts/struts2/trunk/apps/mailreader/pom.xml
struts/struts2/trunk/apps/pom.xml
struts/struts2/trunk/apps/portlet/pom.xml
struts/struts2/trunk/apps/rest-showcase/pom.xml
struts/struts2/trunk/apps/showcase/pom.xml
struts/struts2/trunk/assembly/pom.xml
struts/struts2/trunk/core/pom.xml
struts/struts2/trunk/plugins/codebehind/pom.xml
struts/struts2/trunk/plugins/config-browser/pom.xml
struts/struts2/trunk/plugins/convention/pom.xml
struts/struts2/trunk/plugins/dojo/pom.xml
struts/struts2/trunk/plugins/dwr/pom.xml
struts/struts2/trunk/plugins/jasperreports/pom.xml
struts/struts2/trunk/plugins/javatemplates/pom.xml
struts/struts2/trunk/plugins/jfreechart/pom.xml
struts/struts2/trunk/plugins/jsf/pom.xml
struts/struts2/trunk/plugins/junit/pom.xml
struts/struts2/trunk/plugins/pell-multipart/pom.xml
struts/struts2/trunk/plugins/plexus/pom.xml
struts/struts2/trunk/plugins/pom.xml
struts/struts2/trunk/plugins/portlet/pom.xml
struts/struts2/trunk/plugins/rest/pom.xml
struts/struts2/trunk/plugins/sitegraph/pom.xml
struts/struts2/trunk/plugins/sitemesh/pom.xml
struts/struts2/trunk/plugins/spring/pom.xml
struts/struts2/trunk/plugins/struts1/pom.xml
struts/struts2/trunk/plugins/testng/pom.xml
struts/struts2/trunk/plugins/tiles/pom.xml
struts/struts2/trunk/pom.xml

Modified: struts/struts2/trunk/apps/blank/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/apps/blank/pom.xml?rev=730771&r1=730770&r2=730771&view=diff
==
--- struts/struts2/trunk/apps/blank/pom.xml (original)
+++ struts/struts2/trunk/apps/blank/pom.xml Fri Jan  2 08:27:28 2009
@@ -26,7 +26,7 @@
 
 org.apache.struts
 struts2-apps
-2.1.5-SNAPSHOT
+2.1.5
 
 org.apache.struts
 struts2-blank
@@ -34,9 +34,9 @@
 Blank Webapp
 
 
-   
scm:svn:http://svn.apache.org/repos/asf/struts/struts2/trunk/apps/blank/
-   
scm:svn:https://svn.apache.org/repos/asf/struts/struts2/trunk/apps/blank/
-   
http://svn.apache.org/viewcvs.cgi/struts/struts2/trunk/apps/blank/
+   
scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_1_5/apps/blank
+   
scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_1_5/apps/blank
+   
http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_1_5/apps/blank
 
 
 

Modified: struts/struts2/trunk/apps/mailreader/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/apps/mailreader/pom.xml?rev=730771&r1=730770&r2=730771&view=diff
==
--- struts/struts2/trunk/apps/mailreader/pom.xml (original)
+++ struts/struts2/trunk/apps/mailreader/pom.xml Fri Jan  2 08:27:28 2009
@@ -26,7 +26,7 @@
 
   org.apache.struts
   struts2-apps
-  2.1.5-SNAPSHOT
+  2.1.5
 
 org.apache.struts
 struts2-mailreader
@@ -34,9 +34,9 @@
 Starter Webapp
 
 
-   
scm:svn:http://svn.apache.org/repos/asf/struts/struts2/trunk/apps/mailreader/
-   
scm:svn:https://svn.apache.org/repos/asf/struts/struts2/trunk/apps/mailreader/
-   
http://svn.apache.org/viewcvs.cgi/struts/struts2/trunk/apps/mailreader/
+   
scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_1_5/apps/mailreader
+   
scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_1_5/apps/mailreader
+   
http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_1_5/apps/mailreader
 
 
 

Modified: struts/struts2/trunk/apps/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/apps/pom.xml?rev=730771&r1=730770&r2=730771&view=diff
==
--- struts/struts2/trunk/apps/pom.xml (original)
+++ struts/struts2/trunk/apps/pom.xml Fri Jan  2 08:27:28 2009
@@ -26,7 +26,7 @@
 
 org.apache.struts
 struts2-parent
-2.1.5-SNAPSHOT
+2.1.5
 
 org.apache.struts
 struts2-apps
@@ -41,9 +41,9 @@
 
 
 
-   
scm:svn:http://svn.apache.org/repos/asf/struts/struts2/trunk/apps/
-   
scm:svn:https://svn.apache.org/repos/asf/struts/struts2/trunk/apps/
-   http://svn.apache.org/viewcvs.cgi/struts/struts2/trunk/apps/
+   
scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_1_5/apps
+   
scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_1_5/apps
+   
http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_1_5/apps
 
 
  

Modified: struts/struts2/trunk/apps/portlet/pom.xml
URL: 
http://svn.apache.org/viewvc/struts

svn commit: r730772 - in /struts/struts2/tags/STRUTS_2_1_5: ./ apps/ apps/blank/ apps/mailreader/ apps/portlet/ apps/rest-showcase/ apps/showcase/ assembly/ core/ plugins/ plugins/codebehind/ plugins/

2009-01-02 Thread musachy
Author: musachy
Date: Fri Jan  2 08:28:13 2009
New Revision: 730772

URL: http://svn.apache.org/viewvc?rev=730772&view=rev
Log:
[maven-release-plugin]  copy for tag STRUTS_2_1_5

Added:
struts/struts2/tags/STRUTS_2_1_5/
  - copied from r730749, struts/struts2/trunk/
struts/struts2/tags/STRUTS_2_1_5/apps/blank/pom.xml
  - copied unchanged from r730771, struts/struts2/trunk/apps/blank/pom.xml
struts/struts2/tags/STRUTS_2_1_5/apps/mailreader/pom.xml
  - copied unchanged from r730771, 
struts/struts2/trunk/apps/mailreader/pom.xml
struts/struts2/tags/STRUTS_2_1_5/apps/pom.xml
  - copied unchanged from r730771, struts/struts2/trunk/apps/pom.xml
struts/struts2/tags/STRUTS_2_1_5/apps/portlet/pom.xml
  - copied unchanged from r730771, struts/struts2/trunk/apps/portlet/pom.xml
struts/struts2/tags/STRUTS_2_1_5/apps/rest-showcase/pom.xml
  - copied unchanged from r730771, 
struts/struts2/trunk/apps/rest-showcase/pom.xml
struts/struts2/tags/STRUTS_2_1_5/apps/showcase/pom.xml
  - copied unchanged from r730771, 
struts/struts2/trunk/apps/showcase/pom.xml
struts/struts2/tags/STRUTS_2_1_5/assembly/pom.xml
  - copied unchanged from r730771, struts/struts2/trunk/assembly/pom.xml
struts/struts2/tags/STRUTS_2_1_5/core/pom.xml
  - copied unchanged from r730771, struts/struts2/trunk/core/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/codebehind/pom.xml
  - copied unchanged from r730771, 
struts/struts2/trunk/plugins/codebehind/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/config-browser/pom.xml
  - copied unchanged from r730771, 
struts/struts2/trunk/plugins/config-browser/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/convention/pom.xml
  - copied unchanged from r730771, 
struts/struts2/trunk/plugins/convention/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/dojo/pom.xml
  - copied unchanged from r730771, struts/struts2/trunk/plugins/dojo/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/dwr/pom.xml
  - copied unchanged from r730771, struts/struts2/trunk/plugins/dwr/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/jasperreports/pom.xml
  - copied unchanged from r730771, 
struts/struts2/trunk/plugins/jasperreports/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/javatemplates/pom.xml
  - copied unchanged from r730771, 
struts/struts2/trunk/plugins/javatemplates/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/jfreechart/pom.xml
  - copied unchanged from r730771, 
struts/struts2/trunk/plugins/jfreechart/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/jsf/pom.xml
  - copied unchanged from r730771, struts/struts2/trunk/plugins/jsf/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/junit/pom.xml
  - copied unchanged from r730771, 
struts/struts2/trunk/plugins/junit/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/pell-multipart/pom.xml
  - copied unchanged from r730771, 
struts/struts2/trunk/plugins/pell-multipart/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/plexus/pom.xml
  - copied unchanged from r730771, 
struts/struts2/trunk/plugins/plexus/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/pom.xml
  - copied unchanged from r730771, struts/struts2/trunk/plugins/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/portlet/pom.xml
  - copied unchanged from r730771, 
struts/struts2/trunk/plugins/portlet/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/rest/pom.xml
  - copied unchanged from r730771, struts/struts2/trunk/plugins/rest/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/sitegraph/pom.xml
  - copied unchanged from r730771, 
struts/struts2/trunk/plugins/sitegraph/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/sitemesh/pom.xml
  - copied unchanged from r730771, 
struts/struts2/trunk/plugins/sitemesh/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/spring/pom.xml
  - copied unchanged from r730771, 
struts/struts2/trunk/plugins/spring/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/struts1/pom.xml
  - copied unchanged from r730771, 
struts/struts2/trunk/plugins/struts1/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/testng/pom.xml
  - copied unchanged from r730771, 
struts/struts2/trunk/plugins/testng/pom.xml
struts/struts2/tags/STRUTS_2_1_5/plugins/tiles/pom.xml
  - copied unchanged from r730771, 
struts/struts2/trunk/plugins/tiles/pom.xml
struts/struts2/tags/STRUTS_2_1_5/pom.xml
  - copied unchanged from r730771, struts/struts2/trunk/pom.xml



svn commit: r730774 - in /struts/struts2/trunk: ./ apps/ apps/blank/ apps/mailreader/ apps/portlet/ apps/rest-showcase/ apps/showcase/ assembly/ core/ plugins/ plugins/codebehind/ plugins/config-brows

2009-01-02 Thread musachy
Author: musachy
Date: Fri Jan  2 08:28:44 2009
New Revision: 730774

URL: http://svn.apache.org/viewvc?rev=730774&view=rev
Log:
[maven-release-plugin] prepare for next development iteration

Modified:
struts/struts2/trunk/apps/blank/pom.xml
struts/struts2/trunk/apps/mailreader/pom.xml
struts/struts2/trunk/apps/pom.xml
struts/struts2/trunk/apps/portlet/pom.xml
struts/struts2/trunk/apps/rest-showcase/pom.xml
struts/struts2/trunk/apps/showcase/pom.xml
struts/struts2/trunk/assembly/pom.xml
struts/struts2/trunk/core/pom.xml
struts/struts2/trunk/plugins/codebehind/pom.xml
struts/struts2/trunk/plugins/config-browser/pom.xml
struts/struts2/trunk/plugins/convention/pom.xml
struts/struts2/trunk/plugins/dojo/pom.xml
struts/struts2/trunk/plugins/dwr/pom.xml
struts/struts2/trunk/plugins/jasperreports/pom.xml
struts/struts2/trunk/plugins/javatemplates/pom.xml
struts/struts2/trunk/plugins/jfreechart/pom.xml
struts/struts2/trunk/plugins/jsf/pom.xml
struts/struts2/trunk/plugins/junit/pom.xml
struts/struts2/trunk/plugins/pell-multipart/pom.xml
struts/struts2/trunk/plugins/plexus/pom.xml
struts/struts2/trunk/plugins/pom.xml
struts/struts2/trunk/plugins/portlet/pom.xml
struts/struts2/trunk/plugins/rest/pom.xml
struts/struts2/trunk/plugins/sitegraph/pom.xml
struts/struts2/trunk/plugins/sitemesh/pom.xml
struts/struts2/trunk/plugins/spring/pom.xml
struts/struts2/trunk/plugins/struts1/pom.xml
struts/struts2/trunk/plugins/testng/pom.xml
struts/struts2/trunk/plugins/tiles/pom.xml
struts/struts2/trunk/pom.xml

Modified: struts/struts2/trunk/apps/blank/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/apps/blank/pom.xml?rev=730774&r1=730773&r2=730774&view=diff
==
--- struts/struts2/trunk/apps/blank/pom.xml (original)
+++ struts/struts2/trunk/apps/blank/pom.xml Fri Jan  2 08:28:44 2009
@@ -26,7 +26,7 @@
 
 org.apache.struts
 struts2-apps
-2.1.5
+2.1.6-SNAPSHOT
 
 org.apache.struts
 struts2-blank
@@ -34,9 +34,9 @@
 Blank Webapp
 
 
-   
scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_1_5/apps/blank
-   
scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_1_5/apps/blank
-   
http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_1_5/apps/blank
+   
scm:svn:http://svn.apache.org/repos/asf/struts/struts2/trunk/apps/blank/
+   
scm:svn:https://svn.apache.org/repos/asf/struts/struts2/trunk/apps/blank/
+   
http://svn.apache.org/viewcvs.cgi/struts/struts2/trunk/apps/blank/
 
 
 

Modified: struts/struts2/trunk/apps/mailreader/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/apps/mailreader/pom.xml?rev=730774&r1=730773&r2=730774&view=diff
==
--- struts/struts2/trunk/apps/mailreader/pom.xml (original)
+++ struts/struts2/trunk/apps/mailreader/pom.xml Fri Jan  2 08:28:44 2009
@@ -26,7 +26,7 @@
 
   org.apache.struts
   struts2-apps
-  2.1.5
+  2.1.6-SNAPSHOT
 
 org.apache.struts
 struts2-mailreader
@@ -34,9 +34,9 @@
 Starter Webapp
 
 
-   
scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_1_5/apps/mailreader
-   
scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_1_5/apps/mailreader
-   
http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_1_5/apps/mailreader
+   
scm:svn:http://svn.apache.org/repos/asf/struts/struts2/trunk/apps/mailreader/
+   
scm:svn:https://svn.apache.org/repos/asf/struts/struts2/trunk/apps/mailreader/
+   
http://svn.apache.org/viewcvs.cgi/struts/struts2/trunk/apps/mailreader/
 
 
 

Modified: struts/struts2/trunk/apps/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/apps/pom.xml?rev=730774&r1=730773&r2=730774&view=diff
==
--- struts/struts2/trunk/apps/pom.xml (original)
+++ struts/struts2/trunk/apps/pom.xml Fri Jan  2 08:28:44 2009
@@ -26,7 +26,7 @@
 
 org.apache.struts
 struts2-parent
-2.1.5
+2.1.6-SNAPSHOT
 
 org.apache.struts
 struts2-apps
@@ -41,9 +41,9 @@
 
 
 
-   
scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_1_5/apps
-   
scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_1_5/apps
-   
http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_1_5/apps
+   
scm:svn:http://svn.apache.org/repos/asf/struts/struts2/trunk/apps/
+   
scm:svn:https://svn.apache.org/repos/asf/struts/struts2/trunk/apps/
+   http://svn.apache.org/viewcvs.cgi/struts/struts2/trunk/apps/
 
 
  

Modified: struts/struts2/trunk/apps/portlet/pom.xml
URL: 
http://svn.apache.org/vie

[OSS Bamboo] Struts 2 SVN - Main Build build 1001 has FAILED (0 tests failed). Change made by Musachy Barroso

2009-01-02 Thread bamboo
---
STRUTS-MAIN-1001 failed.
---
Code has been updated by Musachy Barroso.
No failed tests found, a possible compilation error.

http://opensource.bamboo.atlassian.com/browse/STRUTS-MAIN-1001/


--
Code Changes
--
Musachy Barroso (730771):

>[maven-release-plugin] prepare release STRUTS_2_1_5

Musachy Barroso (730774):

>[maven-release-plugin] prepare for next development iteration


--
Error Summary
--
   [INFO] 

   [ERROR] BUILD ERROR
   [INFO] 

   [INFO] Failed to resolve artifact.
   
   GroupId: org.apache.struts
   ArtifactId: struts2-blank
   Version: 2.1.6-SNAPSHOT
   
   Reason: Unable to download the artifact from any repository
   
   Try downloading the file manually from the project website.
   
   Then, install it using the command: 
       mvn install:install-file -DgroupId=org.apache.struts 
-DartifactId=struts2-blank -Dversion=2.1.6-SNAPSHOT -Dpackaging=war 
-Dfile=/path/to/file
   
   Alternatively, if you host your own repository you can deploy the file 
there: 
       mvn deploy:deploy-file -DgroupId=org.apache.struts 
-DartifactId=struts2-blank -Dversion=2.1.6-SNAPSHOT -Dpackaging=war 
-Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
   
   
     org.apache.struts:struts2-blank:war:2.1.6-SNAPSHOT
   
   from the specified remote repositories:
     central (https://m2proxy.atlassian.com/repository/public),
     apache.snapshots (http://people.apache.org/maven-snapshot-repository)
   
   
   [INFO] 

   [INFO] For more information, run Maven with the -e switch


--
This message is automatically generated by Atlassian Bamboo



[OSS Bamboo] Struts 2 SVN - Main Build (Java 6) build 706 has FAILED (0 tests failed). Change made by Musachy Barroso

2009-01-02 Thread bamboo
---
STRUTS-MAINJ6-706 failed.
---
Code has been updated by Musachy Barroso.
No failed tests found, a possible compilation error.

http://opensource.bamboo.atlassian.com/browse/STRUTS-MAINJ6-706/


--
Code Changes
--
Musachy Barroso (730771):

>[maven-release-plugin] prepare release STRUTS_2_1_5

Musachy Barroso (730774):

>[maven-release-plugin] prepare for next development iteration


--
Error Summary
--
   [INFO] 

   [ERROR] BUILD ERROR
   [INFO] 

   [INFO] Unable to find artifact.
   
   Embedded error: Unable to download the artifact from any repository
   
   Try downloading the file manually from the project website.
   
   Then, install it using the command: 
       mvn install:install-file -DgroupId=org.apache.struts 
-DartifactId=struts2-blank -Dversion=2.1.6-SNAPSHOT -Dpackaging=war 
-Dfile=/path/to/file
   
   Alternatively, if you host your own repository you can deploy the file 
there: 
       mvn deploy:deploy-file -DgroupId=org.apache.struts 
-DartifactId=struts2-blank -Dversion=2.1.6-SNAPSHOT -Dpackaging=war 
-Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
   
   
     org.apache.struts:struts2-blank:war:2.1.6-SNAPSHOT
   
   from the specified remote repositories:
     apache.snapshots (http://people.apache.org/maven-snapshot-repository),
     central (https://m2proxy.atlassian.com/repository/public)
   
   [INFO] 

   [INFO] For more information, run Maven with the -e switch


--
This message is automatically generated by Atlassian Bamboo