From 9fbb0d92b945151a36744808627d186c221ee375 Mon Sep 17 00:00:00 2001 From: Maurizio Cucchiara Date: Thu, 18 Apr 2013 09:26:25 +0000 Subject: [PATCH 01/11] Creating new branch git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X@1469242 13f79535-47bb-0310-9956-ffa450edef68 From 7e6f641ebb142663cbd1653dc49bed725edf7f56 Mon Sep 17 00:00:00 2001 From: Maurizio Cucchiara Date: Thu, 18 Apr 2013 09:49:41 +0000 Subject: [PATCH 02/11] Disable eval expressions git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X@1469249 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/struts2/StrutsConstants.java | 3 ++ .../struts2/config/BeanSelectionProvider.java | 1 + .../opensymphony/xwork2/XWorkConstants.java | 1 + .../config/impl/DefaultConfiguration.java | 1 + .../providers/XWorkConfigurationProvider.java | 1 + .../opensymphony/xwork2/ognl/OgnlUtil.java | 52 ++++++++++++++----- 6 files changed, 46 insertions(+), 13 deletions(-) diff --git a/core/src/main/java/org/apache/struts2/StrutsConstants.java b/core/src/main/java/org/apache/struts2/StrutsConstants.java index d4665d778..8a6810921 100644 --- a/core/src/main/java/org/apache/struts2/StrutsConstants.java +++ b/core/src/main/java/org/apache/struts2/StrutsConstants.java @@ -228,6 +228,9 @@ public final class StrutsConstants { /** Enables caching of parsed OGNL expressions **/ public static final String STRUTS_ENABLE_OGNL_EXPRESSION_CACHE = "struts.ognl.enableExpressionCache"; + /** Enables evaluation of OGNL expressions **/ + public static final String STRUTS_ENABLE_OGNL_EVAL_EXPRESSION = "struts.ognl.enableOGNLEvalExpression"; + /** The{@link org.apache.struts2.views.util.UrlHelper} implementation class **/ public static final String STRUTS_URL_HELPER = "struts.view.urlHelper"; diff --git a/core/src/main/java/org/apache/struts2/config/BeanSelectionProvider.java b/core/src/main/java/org/apache/struts2/config/BeanSelectionProvider.java index e3cf0db6f..5b0bb3b61 100644 --- a/core/src/main/java/org/apache/struts2/config/BeanSelectionProvider.java +++ b/core/src/main/java/org/apache/struts2/config/BeanSelectionProvider.java @@ -375,6 +375,7 @@ public class BeanSelectionProvider implements ConfigurationProvider { // Convert Struts properties into XWork properties convertIfExist(props, StrutsConstants.STRUTS_LOG_MISSING_PROPERTIES, XWorkConstants.LOG_MISSING_PROPERTIES); convertIfExist(props, StrutsConstants.STRUTS_ENABLE_OGNL_EXPRESSION_CACHE, XWorkConstants.ENABLE_OGNL_EXPRESSION_CACHE); + convertIfExist(props, StrutsConstants.STRUTS_ENABLE_OGNL_EVAL_EXPRESSION, XWorkConstants.ENABLE_OGNL_EVAL_EXPRESSION); convertIfExist(props, StrutsConstants.STRUTS_ALLOW_STATIC_METHOD_ACCESS, XWorkConstants.ALLOW_STATIC_METHOD_ACCESS); convertIfExist(props, StrutsConstants.STRUTS_CONFIGURATION_XML_RELOAD, XWorkConstants.RELOAD_XML_CONFIGURATION); diff --git a/xwork-core/src/main/java/com/opensymphony/xwork2/XWorkConstants.java b/xwork-core/src/main/java/com/opensymphony/xwork2/XWorkConstants.java index 17ffbebad..19363680e 100644 --- a/xwork-core/src/main/java/com/opensymphony/xwork2/XWorkConstants.java +++ b/xwork-core/src/main/java/com/opensymphony/xwork2/XWorkConstants.java @@ -13,6 +13,7 @@ public final class XWorkConstants { public static final String DEV_MODE = "devMode"; public static final String LOG_MISSING_PROPERTIES = "logMissingProperties"; public static final String ENABLE_OGNL_EXPRESSION_CACHE = "enableOGNLExpressionCache"; + public static final String ENABLE_OGNL_EVAL_EXPRESSION = "enableOGNLEvalExpression"; public static final String RELOAD_XML_CONFIGURATION = "reloadXmlConfiguration"; public static final String ALLOW_STATIC_METHOD_ACCESS = "allowStaticMethodAccess"; public static final String XWORK_LOGGER_FACTORY = "xwork.loggerFactory"; diff --git a/xwork-core/src/main/java/com/opensymphony/xwork2/config/impl/DefaultConfiguration.java b/xwork-core/src/main/java/com/opensymphony/xwork2/config/impl/DefaultConfiguration.java index 911c5a331..f2a026938 100644 --- a/xwork-core/src/main/java/com/opensymphony/xwork2/config/impl/DefaultConfiguration.java +++ b/xwork-core/src/main/java/com/opensymphony/xwork2/config/impl/DefaultConfiguration.java @@ -319,6 +319,7 @@ public class DefaultConfiguration implements Configuration { builder.factory(OgnlUtil.class, Scope.SINGLETON); builder.constant(XWorkConstants.DEV_MODE, "false"); builder.constant(XWorkConstants.LOG_MISSING_PROPERTIES, "false"); + builder.constant(XWorkConstants.ENABLE_OGNL_EVAL_EXPRESSION, "false"); builder.constant(XWorkConstants.RELOAD_XML_CONFIGURATION, "false"); return builder.create(true); } diff --git a/xwork-core/src/main/java/com/opensymphony/xwork2/config/providers/XWorkConfigurationProvider.java b/xwork-core/src/main/java/com/opensymphony/xwork2/config/providers/XWorkConfigurationProvider.java index 495165093..d11a8e5c8 100644 --- a/xwork-core/src/main/java/com/opensymphony/xwork2/config/providers/XWorkConfigurationProvider.java +++ b/xwork-core/src/main/java/com/opensymphony/xwork2/config/providers/XWorkConfigurationProvider.java @@ -151,6 +151,7 @@ public class XWorkConfigurationProvider implements ConfigurationProvider { props.setProperty(XWorkConstants.DEV_MODE, Boolean.FALSE.toString()); props.setProperty(XWorkConstants.LOG_MISSING_PROPERTIES, Boolean.FALSE.toString()); props.setProperty(XWorkConstants.ENABLE_OGNL_EXPRESSION_CACHE, Boolean.TRUE.toString()); + props.setProperty(XWorkConstants.ENABLE_OGNL_EVAL_EXPRESSION, Boolean.FALSE.toString()); props.setProperty(XWorkConstants.RELOAD_XML_CONFIGURATION, Boolean.FALSE.toString()); } diff --git a/xwork-core/src/main/java/com/opensymphony/xwork2/ognl/OgnlUtil.java b/xwork-core/src/main/java/com/opensymphony/xwork2/ognl/OgnlUtil.java index a2ae49058..f488ad516 100644 --- a/xwork-core/src/main/java/com/opensymphony/xwork2/ognl/OgnlUtil.java +++ b/xwork-core/src/main/java/com/opensymphony/xwork2/ognl/OgnlUtil.java @@ -56,6 +56,7 @@ public class OgnlUtil { private TypeConverter defaultConverter; static boolean devMode = false; static boolean enableExpressionCache = true; + private static boolean enableEvalExpression; @Inject public void setXWorkConverter(XWorkConverter conv) { @@ -67,11 +68,20 @@ public class OgnlUtil { devMode = "true".equals(mode); } - @Inject("enableOGNLExpressionCache") + @Inject(XWorkConstants.ENABLE_OGNL_EXPRESSION_CACHE) public static void setEnableExpressionCache(String cache) { enableExpressionCache = "true".equals(cache); } + @Inject(value = XWorkConstants.ENABLE_OGNL_EVAL_EXPRESSION, required = false) + public void setEnableEvalExpression(String evalExpression) { + enableEvalExpression = "true".equals(evalExpression); + if(enableEvalExpression){ + LOG.warn("Enabling OGNL expression evaluation may introduce security risks " + + "(see http://struts.apache.org/release/2.3.x/docs/s2-013.html for further details)"); + } + } + /** * Sets the object's properties using the default type converter, defaulting to not throw * exceptions for problems setting the properties. @@ -217,7 +227,7 @@ public class OgnlUtil { } protected void setValue(String name, Map context, Object root, Object value, boolean evalName) throws OgnlException { - Object tree = compile(name); + Object tree = compile(name, context); if (!evalName && isEvalExpression(tree, context)) { throw new OgnlException("Eval expression cannot be used as parameter name"); } @@ -227,30 +237,46 @@ public class OgnlUtil { private boolean isEvalExpression(Object tree, Map context) throws OgnlException { if (tree instanceof SimpleNode) { SimpleNode node = (SimpleNode) tree; - return node.isEvalChain((OgnlContext) context); + OgnlContext ognlContext = null; + + if (context!=null && context instanceof OgnlContext) { + ognlContext = (OgnlContext) context; + } + return node.isEvalChain(ognlContext); } return false; } public Object getValue(String name, Map context, Object root) throws OgnlException { - return Ognl.getValue(compile(name), context, root); + return Ognl.getValue(compile(name, context), context, root); } public Object getValue(String name, Map context, Object root, Class resultType) throws OgnlException { - return Ognl.getValue(compile(name), context, root, resultType); + return Ognl.getValue(compile(name, context), context, root, resultType); } public Object compile(String expression) throws OgnlException { + return compile(expression, null); + } + + public Object compile(String expression, Map context) throws OgnlException { + Object tree; if (enableExpressionCache) { - Object o = expressions.get(expression); - if (o == null) { - o = Ognl.parseExpression(expression); - expressions.putIfAbsent(expression, o); + tree = expressions.get(expression); + if (tree == null) { + tree = Ognl.parseExpression(expression); + expressions.putIfAbsent(expression, tree); } - return o; - } else - return Ognl.parseExpression(expression); + } else { + tree = Ognl.parseExpression(expression); + } + + if (!enableEvalExpression && isEvalExpression(tree, context)) { + throw new OgnlException("Eval expressions has been disabled"); + } + + return tree; } /** @@ -312,7 +338,7 @@ public class OgnlUtil { PropertyDescriptor toPd = toPdHash.get(fromPd.getName()); if ((toPd != null) && (toPd.getWriteMethod() != null)) { try { - Object expr = compile(fromPd.getName()); + Object expr = compile(fromPd.getName(), context); Object value = Ognl.getValue(expr, contextFrom, from); Ognl.setValue(expr, contextTo, to, value); } catch (OgnlException e) { From f152e7fa70d0f76868f6f2fd128f281a50e2c75e Mon Sep 17 00:00:00 2001 From: Maurizio Cucchiara Date: Thu, 18 Apr 2013 10:07:43 +0000 Subject: [PATCH 03/11] Added -SNAPSHOT suffix git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X@1469263 13f79535-47bb-0310-9956-ffa450edef68 --- apps/blank/pom.xml | 2 +- apps/jboss-blank/pom.xml | 2 +- apps/mailreader/pom.xml | 2 +- apps/pom.xml | 2 +- apps/portlet/pom.xml | 2 +- apps/rest-showcase/pom.xml | 4 ++-- apps/showcase/pom.xml | 2 +- archetypes/pom.xml | 2 +- archetypes/struts2-archetype-blank/pom.xml | 4 ++-- archetypes/struts2-archetype-convention/pom.xml | 4 ++-- archetypes/struts2-archetype-dbportlet/pom.xml | 4 ++-- archetypes/struts2-archetype-plugin/pom.xml | 4 ++-- archetypes/struts2-archetype-portlet/pom.xml | 4 ++-- archetypes/struts2-archetype-starter/pom.xml | 4 ++-- assembly/pom.xml | 2 +- bundles/admin/pom.xml | 2 +- bundles/demo/pom.xml | 2 +- bundles/pom.xml | 2 +- core/pom.xml | 2 +- plugins/cdi/pom.xml | 2 +- plugins/codebehind/pom.xml | 2 +- plugins/config-browser/pom.xml | 2 +- plugins/convention/pom.xml | 2 +- plugins/dojo/pom.xml | 2 +- plugins/dwr/pom.xml | 2 +- plugins/embeddedjsp/pom.xml | 2 +- plugins/gxp/pom.xml | 2 +- plugins/jasperreports/pom.xml | 2 +- plugins/javatemplates/pom.xml | 2 +- plugins/jfreechart/pom.xml | 2 +- plugins/jsf/pom.xml | 2 +- plugins/json/pom.xml | 2 +- plugins/junit/pom.xml | 2 +- plugins/osgi/pom.xml | 2 +- plugins/oval/pom.xml | 2 +- plugins/pell-multipart/pom.xml | 2 +- plugins/plexus/pom.xml | 2 +- plugins/pom.xml | 2 +- plugins/portlet-tiles/pom.xml | 2 +- plugins/portlet/pom.xml | 2 +- plugins/rest/pom.xml | 4 ++-- plugins/sitegraph/pom.xml | 2 +- plugins/sitemesh/pom.xml | 2 +- plugins/spring/pom.xml | 2 +- plugins/struts1/pom.xml | 2 +- plugins/testng/pom.xml | 2 +- plugins/tiles/pom.xml | 2 +- plugins/tiles3/pom.xml | 2 +- pom.xml | 2 +- xwork-core/pom.xml | 2 +- 50 files changed, 58 insertions(+), 58 deletions(-) diff --git a/apps/blank/pom.xml b/apps/blank/pom.xml index 6ebcee106..1f6acf85c 100644 --- a/apps/blank/pom.xml +++ b/apps/blank/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-blank diff --git a/apps/jboss-blank/pom.xml b/apps/jboss-blank/pom.xml index 9a7ed014b..8af3eee67 100644 --- a/apps/jboss-blank/pom.xml +++ b/apps/jboss-blank/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-jboss-blank diff --git a/apps/mailreader/pom.xml b/apps/mailreader/pom.xml index 799d14cb9..8832021f5 100644 --- a/apps/mailreader/pom.xml +++ b/apps/mailreader/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-mailreader diff --git a/apps/pom.xml b/apps/pom.xml index 904a169f7..ccfd251b5 100644 --- a/apps/pom.xml +++ b/apps/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-apps diff --git a/apps/portlet/pom.xml b/apps/portlet/pom.xml index fe27dad6e..aa84586ad 100644 --- a/apps/portlet/pom.xml +++ b/apps/portlet/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-portlet diff --git a/apps/rest-showcase/pom.xml b/apps/rest-showcase/pom.xml index 13dd03de0..88ed9ae0b 100644 --- a/apps/rest-showcase/pom.xml +++ b/apps/rest-showcase/pom.xml @@ -26,13 +26,13 @@ org.apache.struts struts2-apps - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-rest-showcase war - 2.3.14 + 2.3.14.1-SNAPSHOT Struts 2 Rest Showcase Example Struts 2 Rest Showcase Example diff --git a/apps/showcase/pom.xml b/apps/showcase/pom.xml index 6cd8a210a..305f55e0a 100644 --- a/apps/showcase/pom.xml +++ b/apps/showcase/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-showcase diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 6da118d85..9a03060c2 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-archetypes diff --git a/archetypes/struts2-archetype-blank/pom.xml b/archetypes/struts2-archetype-blank/pom.xml index e3377434b..19efbc4a3 100644 --- a/archetypes/struts2-archetype-blank/pom.xml +++ b/archetypes/struts2-archetype-blank/pom.xml @@ -3,12 +3,12 @@ org.apache.struts struts2-archetypes - 2.3.14 + 2.3.14.1-SNAPSHOT 4.0.0 struts2-archetype-blank - 2.3.14 + 2.3.14.1-SNAPSHOT jar Struts 2 Archetypes - Blank diff --git a/archetypes/struts2-archetype-convention/pom.xml b/archetypes/struts2-archetype-convention/pom.xml index ce6d39aba..d373742c4 100644 --- a/archetypes/struts2-archetype-convention/pom.xml +++ b/archetypes/struts2-archetype-convention/pom.xml @@ -2,12 +2,12 @@ org.apache.struts struts2-archetypes - 2.3.14 + 2.3.14.1-SNAPSHOT 4.0.0 struts2-archetype-convention - 2.3.14 + 2.3.14.1-SNAPSHOT jar Struts 2 Archetypes - Blank Convention diff --git a/archetypes/struts2-archetype-dbportlet/pom.xml b/archetypes/struts2-archetype-dbportlet/pom.xml index 7bb32501d..bbb5328be 100644 --- a/archetypes/struts2-archetype-dbportlet/pom.xml +++ b/archetypes/struts2-archetype-dbportlet/pom.xml @@ -2,12 +2,12 @@ org.apache.struts struts2-archetypes - 2.3.14 + 2.3.14.1-SNAPSHOT 4.0.0 struts2-archetype-dbportlet - 2.3.14 + 2.3.14.1-SNAPSHOT jar Struts 2 Archetypes - Database Portlet diff --git a/archetypes/struts2-archetype-plugin/pom.xml b/archetypes/struts2-archetype-plugin/pom.xml index a6a56329d..5680ff02f 100644 --- a/archetypes/struts2-archetype-plugin/pom.xml +++ b/archetypes/struts2-archetype-plugin/pom.xml @@ -2,12 +2,12 @@ org.apache.struts struts2-archetypes - 2.3.14 + 2.3.14.1-SNAPSHOT 4.0.0 struts2-archetype-plugin - 2.3.14 + 2.3.14.1-SNAPSHOT jar Struts 2 Archetypes - Plugin diff --git a/archetypes/struts2-archetype-portlet/pom.xml b/archetypes/struts2-archetype-portlet/pom.xml index 048fa2f2d..a72f177f9 100644 --- a/archetypes/struts2-archetype-portlet/pom.xml +++ b/archetypes/struts2-archetype-portlet/pom.xml @@ -2,12 +2,12 @@ org.apache.struts struts2-archetypes - 2.3.14 + 2.3.14.1-SNAPSHOT 4.0.0 struts2-archetype-portlet - 2.3.14 + 2.3.14.1-SNAPSHOT jar Struts 2 Archetypes - Portlet diff --git a/archetypes/struts2-archetype-starter/pom.xml b/archetypes/struts2-archetype-starter/pom.xml index e567bb296..550d20fc3 100644 --- a/archetypes/struts2-archetype-starter/pom.xml +++ b/archetypes/struts2-archetype-starter/pom.xml @@ -4,12 +4,12 @@ org.apache.struts struts2-archetypes - 2.3.14 + 2.3.14.1-SNAPSHOT 4.0.0 struts2-archetype-starter - 2.3.14 + 2.3.14.1-SNAPSHOT jar Struts 2 Archetypes - Starter diff --git a/assembly/pom.xml b/assembly/pom.xml index 7c6a2b0ef..1118d5302 100644 --- a/assembly/pom.xml +++ b/assembly/pom.xml @@ -11,7 +11,7 @@ org.apache.struts struts2-parent - 2.3.14 + 2.3.14.1-SNAPSHOT diff --git a/bundles/admin/pom.xml b/bundles/admin/pom.xml index d28103853..078e024f6 100644 --- a/bundles/admin/pom.xml +++ b/bundles/admin/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-osgi-bundles - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-osgi-admin-bundle diff --git a/bundles/demo/pom.xml b/bundles/demo/pom.xml index 3d70c5bf6..552fd5657 100644 --- a/bundles/demo/pom.xml +++ b/bundles/demo/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-osgi-bundles - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-osgi-demo-bundle diff --git a/bundles/pom.xml b/bundles/pom.xml index 69b0eb8f8..ff63eb801 100755 --- a/bundles/pom.xml +++ b/bundles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-osgi-bundles diff --git a/core/pom.xml b/core/pom.xml index 0d4265a6a..89ab0f132 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-core diff --git a/plugins/cdi/pom.xml b/plugins/cdi/pom.xml index 40adcac04..8ab174152 100644 --- a/plugins/cdi/pom.xml +++ b/plugins/cdi/pom.xml @@ -25,7 +25,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts diff --git a/plugins/codebehind/pom.xml b/plugins/codebehind/pom.xml index c29edf953..f3a80363c 100644 --- a/plugins/codebehind/pom.xml +++ b/plugins/codebehind/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-codebehind-plugin diff --git a/plugins/config-browser/pom.xml b/plugins/config-browser/pom.xml index 36a2ccc85..d54f90d26 100644 --- a/plugins/config-browser/pom.xml +++ b/plugins/config-browser/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-config-browser-plugin diff --git a/plugins/convention/pom.xml b/plugins/convention/pom.xml index 60c2eea9e..474572f67 100644 --- a/plugins/convention/pom.xml +++ b/plugins/convention/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-convention-plugin diff --git a/plugins/dojo/pom.xml b/plugins/dojo/pom.xml index e59d841a1..f8e65bae6 100644 --- a/plugins/dojo/pom.xml +++ b/plugins/dojo/pom.xml @@ -25,7 +25,7 @@ struts2-plugins org.apache.struts - 2.3.14 + 2.3.14.1-SNAPSHOT 4.0.0 org.apache.struts diff --git a/plugins/dwr/pom.xml b/plugins/dwr/pom.xml index df52ddc14..1f9277332 100644 --- a/plugins/dwr/pom.xml +++ b/plugins/dwr/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-dwr-plugin diff --git a/plugins/embeddedjsp/pom.xml b/plugins/embeddedjsp/pom.xml index 3983437a9..95936568e 100644 --- a/plugins/embeddedjsp/pom.xml +++ b/plugins/embeddedjsp/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts diff --git a/plugins/gxp/pom.xml b/plugins/gxp/pom.xml index 4ac05609d..4ad11e9b0 100644 --- a/plugins/gxp/pom.xml +++ b/plugins/gxp/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts diff --git a/plugins/jasperreports/pom.xml b/plugins/jasperreports/pom.xml index fcf61ec19..ea2f17de0 100644 --- a/plugins/jasperreports/pom.xml +++ b/plugins/jasperreports/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-jasperreports-plugin diff --git a/plugins/javatemplates/pom.xml b/plugins/javatemplates/pom.xml index c09733521..6fc29d7d3 100644 --- a/plugins/javatemplates/pom.xml +++ b/plugins/javatemplates/pom.xml @@ -25,7 +25,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-javatemplates-plugin diff --git a/plugins/jfreechart/pom.xml b/plugins/jfreechart/pom.xml index 896917165..e3195088d 100644 --- a/plugins/jfreechart/pom.xml +++ b/plugins/jfreechart/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-jfreechart-plugin diff --git a/plugins/jsf/pom.xml b/plugins/jsf/pom.xml index 7030b6eac..c738368a0 100644 --- a/plugins/jsf/pom.xml +++ b/plugins/jsf/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-jsf-plugin diff --git a/plugins/json/pom.xml b/plugins/json/pom.xml index 9b7c85e74..a08283af3 100644 --- a/plugins/json/pom.xml +++ b/plugins/json/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-json-plugin diff --git a/plugins/junit/pom.xml b/plugins/junit/pom.xml index 7e9cfb180..c9933fea0 100644 --- a/plugins/junit/pom.xml +++ b/plugins/junit/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-junit-plugin diff --git a/plugins/osgi/pom.xml b/plugins/osgi/pom.xml index f63af3c9b..42472e376 100644 --- a/plugins/osgi/pom.xml +++ b/plugins/osgi/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-osgi-plugin diff --git a/plugins/oval/pom.xml b/plugins/oval/pom.xml index 7a5bc7218..e91e03b6f 100644 --- a/plugins/oval/pom.xml +++ b/plugins/oval/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-oval-plugin diff --git a/plugins/pell-multipart/pom.xml b/plugins/pell-multipart/pom.xml index 905c2676f..043ca1dea 100644 --- a/plugins/pell-multipart/pom.xml +++ b/plugins/pell-multipart/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-pell-multipart-plugin diff --git a/plugins/plexus/pom.xml b/plugins/plexus/pom.xml index bf3a301fb..da1fb2134 100644 --- a/plugins/plexus/pom.xml +++ b/plugins/plexus/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-plexus-plugin diff --git a/plugins/pom.xml b/plugins/pom.xml index d069f9211..b1864db10 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-plugins diff --git a/plugins/portlet-tiles/pom.xml b/plugins/portlet-tiles/pom.xml index 253361ff6..99eb7fc81 100644 --- a/plugins/portlet-tiles/pom.xml +++ b/plugins/portlet-tiles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-portlet-tiles-plugin diff --git a/plugins/portlet/pom.xml b/plugins/portlet/pom.xml index 991a451e7..499132150 100644 --- a/plugins/portlet/pom.xml +++ b/plugins/portlet/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-portlet-plugin diff --git a/plugins/rest/pom.xml b/plugins/rest/pom.xml index 44833be9e..c0e26de94 100644 --- a/plugins/rest/pom.xml +++ b/plugins/rest/pom.xml @@ -26,11 +26,11 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-rest-plugin - 2.3.14 + 2.3.14.1-SNAPSHOT Struts 2 REST Plugin diff --git a/plugins/sitegraph/pom.xml b/plugins/sitegraph/pom.xml index 4f467964a..7d119971c 100644 --- a/plugins/sitegraph/pom.xml +++ b/plugins/sitegraph/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-sitegraph-plugin diff --git a/plugins/sitemesh/pom.xml b/plugins/sitemesh/pom.xml index d96313170..d52dc84fc 100644 --- a/plugins/sitemesh/pom.xml +++ b/plugins/sitemesh/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-sitemesh-plugin diff --git a/plugins/spring/pom.xml b/plugins/spring/pom.xml index 226bd884a..726546d44 100644 --- a/plugins/spring/pom.xml +++ b/plugins/spring/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-spring-plugin diff --git a/plugins/struts1/pom.xml b/plugins/struts1/pom.xml index 1a7f9b53c..e5cd639a3 100644 --- a/plugins/struts1/pom.xml +++ b/plugins/struts1/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-struts1-plugin diff --git a/plugins/testng/pom.xml b/plugins/testng/pom.xml index 81e0386cd..e8adb3c74 100644 --- a/plugins/testng/pom.xml +++ b/plugins/testng/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-testng-plugin diff --git a/plugins/tiles/pom.xml b/plugins/tiles/pom.xml index 7a4a94aae..664d2952d 100644 --- a/plugins/tiles/pom.xml +++ b/plugins/tiles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts struts2-tiles-plugin diff --git a/plugins/tiles3/pom.xml b/plugins/tiles3/pom.xml index bad250f38..39ad1fadb 100644 --- a/plugins/tiles3/pom.xml +++ b/plugins/tiles3/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14 + 2.3.14.1-SNAPSHOT struts2-tiles3-plugin diff --git a/pom.xml b/pom.xml index ebf5c0bf8..cc7e82e04 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ 4.0.0 struts2-parent - 2.3.14 + 2.3.14.1-SNAPSHOT pom Struts 2 http://struts.apache.org/2.x/ diff --git a/xwork-core/pom.xml b/xwork-core/pom.xml index 13d832d0b..d6bf8b94b 100644 --- a/xwork-core/pom.xml +++ b/xwork-core/pom.xml @@ -5,7 +5,7 @@ org.apache.struts struts2-parent - 2.3.14 + 2.3.14.1-SNAPSHOT org.apache.struts.xwork From 038ddb4663797ca85cf6918b5e0731313225d15d Mon Sep 17 00:00:00 2001 From: Maurizio Cucchiara Date: Thu, 18 Apr 2013 13:31:31 +0000 Subject: [PATCH 04/11] [maven-release-plugin] prepare release struts2-parent-2.3.14.1 git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X@1469313 13f79535-47bb-0310-9956-ffa450edef68 --- apps/blank/pom.xml | 8 ++++---- apps/jboss-blank/pom.xml | 8 ++++---- apps/mailreader/pom.xml | 8 ++++---- apps/pom.xml | 8 ++++---- apps/portlet/pom.xml | 8 ++++---- apps/rest-showcase/pom.xml | 4 ++-- apps/showcase/pom.xml | 8 ++++---- archetypes/pom.xml | 8 ++++---- archetypes/struts2-archetype-blank/pom.xml | 10 +++++----- archetypes/struts2-archetype-convention/pom.xml | 10 +++++----- archetypes/struts2-archetype-dbportlet/pom.xml | 10 +++++----- archetypes/struts2-archetype-plugin/pom.xml | 10 +++++----- archetypes/struts2-archetype-portlet/pom.xml | 10 +++++----- archetypes/struts2-archetype-starter/pom.xml | 10 +++++----- assembly/pom.xml | 8 ++++---- bundles/admin/pom.xml | 8 ++++---- bundles/demo/pom.xml | 8 ++++---- bundles/pom.xml | 8 ++++---- core/pom.xml | 8 ++++---- plugins/cdi/pom.xml | 2 +- plugins/codebehind/pom.xml | 8 ++++---- plugins/config-browser/pom.xml | 8 ++++---- plugins/convention/pom.xml | 8 ++++---- plugins/dojo/pom.xml | 8 ++++---- plugins/dwr/pom.xml | 8 ++++---- plugins/embeddedjsp/pom.xml | 8 ++++---- plugins/gxp/pom.xml | 8 ++++---- plugins/jasperreports/pom.xml | 8 ++++---- plugins/javatemplates/pom.xml | 8 ++++---- plugins/jfreechart/pom.xml | 8 ++++---- plugins/jsf/pom.xml | 8 ++++---- plugins/json/pom.xml | 8 ++++---- plugins/junit/pom.xml | 8 ++++---- plugins/osgi/pom.xml | 8 ++++---- plugins/oval/pom.xml | 8 ++++---- plugins/pell-multipart/pom.xml | 8 ++++---- plugins/plexus/pom.xml | 8 ++++---- plugins/pom.xml | 8 ++++---- plugins/portlet-tiles/pom.xml | 8 ++++---- plugins/portlet/pom.xml | 8 ++++---- plugins/rest/pom.xml | 4 ++-- plugins/sitegraph/pom.xml | 8 ++++---- plugins/sitemesh/pom.xml | 8 ++++---- plugins/spring/pom.xml | 8 ++++---- plugins/struts1/pom.xml | 8 ++++---- plugins/testng/pom.xml | 8 ++++---- plugins/tiles/pom.xml | 8 ++++---- plugins/tiles3/pom.xml | 8 ++++---- pom.xml | 8 ++++---- xwork-core/pom.xml | 8 ++++---- 50 files changed, 199 insertions(+), 199 deletions(-) diff --git a/apps/blank/pom.xml b/apps/blank/pom.xml index 1f6acf85c..7fdd530a6 100644 --- a/apps/blank/pom.xml +++ b/apps/blank/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-blank @@ -34,9 +34,9 @@ Blank Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/blank - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/blank - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/blank + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps/blank + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps/blank + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/apps/blank diff --git a/apps/jboss-blank/pom.xml b/apps/jboss-blank/pom.xml index 8af3eee67..a1219109f 100644 --- a/apps/jboss-blank/pom.xml +++ b/apps/jboss-blank/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-jboss-blank @@ -34,9 +34,9 @@ JBoss Blank Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/jboss-blank - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/jboss-blank - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/jboss-blank + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps/jboss-blank + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps/jboss-blank + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/apps/jboss-blank diff --git a/apps/mailreader/pom.xml b/apps/mailreader/pom.xml index 8832021f5..c1bac3416 100644 --- a/apps/mailreader/pom.xml +++ b/apps/mailreader/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-mailreader @@ -34,9 +34,9 @@ Mail Reader Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/mailreader - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/mailreader - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/mailreader + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps/mailreader + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps/mailreader + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/apps/mailreader diff --git a/apps/pom.xml b/apps/pom.xml index ccfd251b5..b06faab1b 100644 --- a/apps/pom.xml +++ b/apps/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-apps @@ -42,9 +42,9 @@ - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/apps diff --git a/apps/portlet/pom.xml b/apps/portlet/pom.xml index aa84586ad..90d85b003 100644 --- a/apps/portlet/pom.xml +++ b/apps/portlet/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-portlet @@ -34,9 +34,9 @@ Portlet Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/portlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/portlet - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/portlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps/portlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps/portlet + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/apps/portlet diff --git a/apps/rest-showcase/pom.xml b/apps/rest-showcase/pom.xml index 88ed9ae0b..3489ab06d 100644 --- a/apps/rest-showcase/pom.xml +++ b/apps/rest-showcase/pom.xml @@ -26,13 +26,13 @@ org.apache.struts struts2-apps - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-rest-showcase war - 2.3.14.1-SNAPSHOT + 2.3.14.1 Struts 2 Rest Showcase Example Struts 2 Rest Showcase Example diff --git a/apps/showcase/pom.xml b/apps/showcase/pom.xml index 305f55e0a..32bd94962 100644 --- a/apps/showcase/pom.xml +++ b/apps/showcase/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-showcase @@ -34,9 +34,9 @@ Showcase Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/showcase - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/showcase - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/showcase + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps/showcase + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps/showcase + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/apps/showcase diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 9a03060c2..3dbafa40d 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-archetypes @@ -34,9 +34,9 @@ Struts 2 Maven Archetypes - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes + http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes diff --git a/archetypes/struts2-archetype-blank/pom.xml b/archetypes/struts2-archetype-blank/pom.xml index 19efbc4a3..420646e39 100644 --- a/archetypes/struts2-archetype-blank/pom.xml +++ b/archetypes/struts2-archetype-blank/pom.xml @@ -3,19 +3,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 struts2-archetype-blank - 2.3.14.1-SNAPSHOT + 2.3.14.1 jar Struts 2 Archetypes - Blank - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-blank - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-blank - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-blank + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-blank + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-blank + http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-blank diff --git a/archetypes/struts2-archetype-convention/pom.xml b/archetypes/struts2-archetype-convention/pom.xml index d373742c4..0fb53bbe2 100644 --- a/archetypes/struts2-archetype-convention/pom.xml +++ b/archetypes/struts2-archetype-convention/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 struts2-archetype-convention - 2.3.14.1-SNAPSHOT + 2.3.14.1 jar Struts 2 Archetypes - Blank Convention - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-convention - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-convention - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-convention + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-convention + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-convention + http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-convention diff --git a/archetypes/struts2-archetype-dbportlet/pom.xml b/archetypes/struts2-archetype-dbportlet/pom.xml index bbb5328be..738110255 100644 --- a/archetypes/struts2-archetype-dbportlet/pom.xml +++ b/archetypes/struts2-archetype-dbportlet/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 struts2-archetype-dbportlet - 2.3.14.1-SNAPSHOT + 2.3.14.1 jar Struts 2 Archetypes - Database Portlet - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-dbportlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-dbportlet - svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-dbportlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-dbportlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-dbportlet + svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-dbportlet diff --git a/archetypes/struts2-archetype-plugin/pom.xml b/archetypes/struts2-archetype-plugin/pom.xml index 5680ff02f..6c6f56f92 100644 --- a/archetypes/struts2-archetype-plugin/pom.xml +++ b/archetypes/struts2-archetype-plugin/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 struts2-archetype-plugin - 2.3.14.1-SNAPSHOT + 2.3.14.1 jar Struts 2 Archetypes - Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-plugin - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-plugin - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-plugin + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-plugin + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-plugin + http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-plugin diff --git a/archetypes/struts2-archetype-portlet/pom.xml b/archetypes/struts2-archetype-portlet/pom.xml index a72f177f9..25bf5c111 100644 --- a/archetypes/struts2-archetype-portlet/pom.xml +++ b/archetypes/struts2-archetype-portlet/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 struts2-archetype-portlet - 2.3.14.1-SNAPSHOT + 2.3.14.1 jar Struts 2 Archetypes - Portlet - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-portlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-portlet - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-portlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-portlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-portlet + http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-portlet diff --git a/archetypes/struts2-archetype-starter/pom.xml b/archetypes/struts2-archetype-starter/pom.xml index 550d20fc3..5357d8de1 100644 --- a/archetypes/struts2-archetype-starter/pom.xml +++ b/archetypes/struts2-archetype-starter/pom.xml @@ -4,19 +4,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 struts2-archetype-starter - 2.3.14.1-SNAPSHOT + 2.3.14.1 jar Struts 2 Archetypes - Starter - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-starter - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-starter - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-starter + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-starter + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-starter + http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-starter diff --git a/assembly/pom.xml b/assembly/pom.xml index 1118d5302..640190e3d 100644 --- a/assembly/pom.xml +++ b/assembly/pom.xml @@ -11,13 +11,13 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/assembly - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/assembly - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/assembly + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/assembly + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/assembly + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/assembly diff --git a/bundles/admin/pom.xml b/bundles/admin/pom.xml index 078e024f6..92db920d3 100644 --- a/bundles/admin/pom.xml +++ b/bundles/admin/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-osgi-bundles - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-osgi-admin-bundle @@ -12,9 +12,9 @@ Struts 2 OSGi Admin Bundle - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles/admin - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles/admin - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/bundles/admin + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/bundles/admin + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/bundles/admin + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/bundles/admin diff --git a/bundles/demo/pom.xml b/bundles/demo/pom.xml index 552fd5657..53f4c8ca5 100644 --- a/bundles/demo/pom.xml +++ b/bundles/demo/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-osgi-bundles - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-osgi-demo-bundle @@ -12,9 +12,9 @@ Struts 2 OSGi Demo Bundle - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles/demo - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles/demo - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/bundles/demo + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/bundles/demo + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/bundles/demo + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/bundles/demo diff --git a/bundles/pom.xml b/bundles/pom.xml index ff63eb801..c5ada3f68 100755 --- a/bundles/pom.xml +++ b/bundles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-osgi-bundles @@ -34,9 +34,9 @@ Struts OSGi Bundles - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/bundles + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/bundles + http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/bundles diff --git a/core/pom.xml b/core/pom.xml index 89ab0f132..5282ab0bd 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-core @@ -34,9 +34,9 @@ Struts 2 Core - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/core - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/core - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/core + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/core + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/core + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/core diff --git a/plugins/cdi/pom.xml b/plugins/cdi/pom.xml index 8ab174152..82b332bcc 100644 --- a/plugins/cdi/pom.xml +++ b/plugins/cdi/pom.xml @@ -25,7 +25,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts diff --git a/plugins/codebehind/pom.xml b/plugins/codebehind/pom.xml index f3a80363c..199a86bb3 100644 --- a/plugins/codebehind/pom.xml +++ b/plugins/codebehind/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-codebehind-plugin @@ -34,9 +34,9 @@ Struts 2 Codebehind Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/codebehind - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/codebehind - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/codebehind + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/codebehind + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/codebehind + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/codebehind diff --git a/plugins/config-browser/pom.xml b/plugins/config-browser/pom.xml index d54f90d26..a1cc338ef 100644 --- a/plugins/config-browser/pom.xml +++ b/plugins/config-browser/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-config-browser-plugin @@ -34,9 +34,9 @@ Struts 2 Configuration Browser Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/config-browser - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/config-browser - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/config-browser + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/config-browser + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/config-browser + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/config-browser diff --git a/plugins/convention/pom.xml b/plugins/convention/pom.xml index 474572f67..1e0e51a34 100644 --- a/plugins/convention/pom.xml +++ b/plugins/convention/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-convention-plugin @@ -11,9 +11,9 @@ Struts 2 Convention Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-convention-plugin - scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-convention-plugin - http://svn.apache.org/viewcvs.cgi/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-convention-plugin + scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/tags/struts2-parent-2.3.14.1/trunk/struts2-convention-plugin + scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/tags/struts2-parent-2.3.14.1/trunk/struts2-convention-plugin + http://svn.apache.org/viewcvs.cgi/struts/sandbox/tags/STRUTS_2_3_14/tags/struts2-parent-2.3.14.1/trunk/struts2-convention-plugin diff --git a/plugins/dojo/pom.xml b/plugins/dojo/pom.xml index f8e65bae6..52989a717 100644 --- a/plugins/dojo/pom.xml +++ b/plugins/dojo/pom.xml @@ -25,7 +25,7 @@ struts2-plugins org.apache.struts - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 org.apache.struts @@ -33,9 +33,9 @@ Struts 2 Dojo Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/dojo - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/dojo - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/dojo + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/dojo + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/dojo + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/dojo diff --git a/plugins/dwr/pom.xml b/plugins/dwr/pom.xml index 1f9277332..47984df50 100644 --- a/plugins/dwr/pom.xml +++ b/plugins/dwr/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-dwr-plugin @@ -34,9 +34,9 @@ Struts 2 DWR Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/dwr - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/dwr - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/dwr + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/dwr + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/dwr + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/dwr diff --git a/plugins/embeddedjsp/pom.xml b/plugins/embeddedjsp/pom.xml index 95936568e..20de97b72 100644 --- a/plugins/embeddedjsp/pom.xml +++ b/plugins/embeddedjsp/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts @@ -35,9 +35,9 @@ Struts 2 Embedded JSP Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/embeddedjsp - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/embeddedjsp - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/embeddedjsp + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/embeddedjsp + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/embeddedjsp + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/embeddedjsp diff --git a/plugins/gxp/pom.xml b/plugins/gxp/pom.xml index 4ad11e9b0..dfcf4744f 100644 --- a/plugins/gxp/pom.xml +++ b/plugins/gxp/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts @@ -13,9 +13,9 @@ http://struts.apache.org - scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-gxp-plugin - scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-gxp-plugin - http://svn.apache.org/viewcvs.cgi/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-gxp-plugin + scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/tags/struts2-parent-2.3.14.1/trunk/struts2-gxp-plugin + scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/tags/struts2-parent-2.3.14.1/trunk/struts2-gxp-plugin + http://svn.apache.org/viewcvs.cgi/struts/sandbox/tags/STRUTS_2_3_14/tags/struts2-parent-2.3.14.1/trunk/struts2-gxp-plugin diff --git a/plugins/jasperreports/pom.xml b/plugins/jasperreports/pom.xml index ea2f17de0..b940335e3 100644 --- a/plugins/jasperreports/pom.xml +++ b/plugins/jasperreports/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-jasperreports-plugin @@ -34,9 +34,9 @@ Struts 2 Jasper Reports Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jasperreports - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jasperreports - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/jasperreports + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/jasperreports + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/jasperreports + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/jasperreports diff --git a/plugins/javatemplates/pom.xml b/plugins/javatemplates/pom.xml index 6fc29d7d3..ad2870fc2 100644 --- a/plugins/javatemplates/pom.xml +++ b/plugins/javatemplates/pom.xml @@ -25,7 +25,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-javatemplates-plugin @@ -33,9 +33,9 @@ Struts 2 Java Templates Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/javatemplates - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/javatemplates - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/javatemplates + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/javatemplates + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/javatemplates + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/javatemplates diff --git a/plugins/jfreechart/pom.xml b/plugins/jfreechart/pom.xml index e3195088d..b49264567 100644 --- a/plugins/jfreechart/pom.xml +++ b/plugins/jfreechart/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-jfreechart-plugin @@ -34,9 +34,9 @@ Struts 2 JFreeChart Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jfreechart - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jfreechart - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/jfreechart + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/jfreechart + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/jfreechart + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/jfreechart diff --git a/plugins/jsf/pom.xml b/plugins/jsf/pom.xml index c738368a0..ed58f1bcc 100644 --- a/plugins/jsf/pom.xml +++ b/plugins/jsf/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-jsf-plugin @@ -34,9 +34,9 @@ Struts 2 JSF Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jsf - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jsf - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/jsf + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/jsf + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/jsf + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/jsf diff --git a/plugins/json/pom.xml b/plugins/json/pom.xml index a08283af3..a97958d10 100644 --- a/plugins/json/pom.xml +++ b/plugins/json/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-json-plugin @@ -34,9 +34,9 @@ Struts 2 JSON Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/json - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/json - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/json + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/json + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/json + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/json diff --git a/plugins/junit/pom.xml b/plugins/junit/pom.xml index c9933fea0..e29b0b2b3 100644 --- a/plugins/junit/pom.xml +++ b/plugins/junit/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-junit-plugin @@ -34,9 +34,9 @@ Struts 2 JUnit Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/junit - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/junit - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/junit + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/junit + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/junit + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/junit diff --git a/plugins/osgi/pom.xml b/plugins/osgi/pom.xml index 42472e376..d28fcb53b 100644 --- a/plugins/osgi/pom.xml +++ b/plugins/osgi/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-osgi-plugin @@ -12,9 +12,9 @@ Struts 2 OSGi Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/osgi - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/osgi - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/osgi + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/osgi + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/osgi + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/osgi diff --git a/plugins/oval/pom.xml b/plugins/oval/pom.xml index e91e03b6f..223d0d9f7 100644 --- a/plugins/oval/pom.xml +++ b/plugins/oval/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-oval-plugin @@ -34,9 +34,9 @@ Struts 2 OVal Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/oval - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/oval - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/oval + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/oval + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/oval + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/oval diff --git a/plugins/pell-multipart/pom.xml b/plugins/pell-multipart/pom.xml index 043ca1dea..86e171795 100644 --- a/plugins/pell-multipart/pom.xml +++ b/plugins/pell-multipart/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-pell-multipart-plugin @@ -34,9 +34,9 @@ Struts 2 Pell Multipart Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/pell-multipart - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/pell-multipart - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/pell-multipart + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/pell-multipart + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/pell-multipart + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/pell-multipart diff --git a/plugins/plexus/pom.xml b/plugins/plexus/pom.xml index da1fb2134..459244ca0 100644 --- a/plugins/plexus/pom.xml +++ b/plugins/plexus/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-plexus-plugin @@ -34,9 +34,9 @@ Struts 2 Plexus Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/plexus - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/plexus - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/plexus + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/plexus + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/plexus + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/plexus diff --git a/plugins/pom.xml b/plugins/pom.xml index b1864db10..661ba54fb 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-plugins @@ -34,9 +34,9 @@ Struts Plugins - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins + http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins diff --git a/plugins/portlet-tiles/pom.xml b/plugins/portlet-tiles/pom.xml index 99eb7fc81..49c660bb3 100644 --- a/plugins/portlet-tiles/pom.xml +++ b/plugins/portlet-tiles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-portlet-tiles-plugin @@ -34,9 +34,9 @@ Struts 2 Portlet Tiles Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet-tiles - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet-tiles - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet-tiles + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/portlet-tiles + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/portlet-tiles + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/portlet-tiles diff --git a/plugins/portlet/pom.xml b/plugins/portlet/pom.xml index 499132150..55b4a3e42 100644 --- a/plugins/portlet/pom.xml +++ b/plugins/portlet/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-portlet-plugin @@ -11,9 +11,9 @@ Struts 2 Portlet Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/portlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/portlet + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/portlet diff --git a/plugins/rest/pom.xml b/plugins/rest/pom.xml index c0e26de94..e3abee32b 100644 --- a/plugins/rest/pom.xml +++ b/plugins/rest/pom.xml @@ -26,11 +26,11 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-rest-plugin - 2.3.14.1-SNAPSHOT + 2.3.14.1 Struts 2 REST Plugin diff --git a/plugins/sitegraph/pom.xml b/plugins/sitegraph/pom.xml index 7d119971c..23ec6de18 100644 --- a/plugins/sitegraph/pom.xml +++ b/plugins/sitegraph/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-sitegraph-plugin @@ -34,9 +34,9 @@ Struts 2 Sitegraph Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/sitegraph - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/sitegraph - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/sitegraph + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/sitegraph + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/sitegraph + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/sitegraph diff --git a/plugins/sitemesh/pom.xml b/plugins/sitemesh/pom.xml index d52dc84fc..767559087 100644 --- a/plugins/sitemesh/pom.xml +++ b/plugins/sitemesh/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-sitemesh-plugin @@ -34,9 +34,9 @@ Struts 2 Sitemesh Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/sitemesh - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/sitemesh - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/sitemesh + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/sitemesh + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/sitemesh + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/sitemesh diff --git a/plugins/spring/pom.xml b/plugins/spring/pom.xml index 726546d44..12ffb3ebe 100644 --- a/plugins/spring/pom.xml +++ b/plugins/spring/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-spring-plugin @@ -34,9 +34,9 @@ Struts 2 Spring Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/spring - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/spring - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/spring + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/spring + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/spring + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/spring diff --git a/plugins/struts1/pom.xml b/plugins/struts1/pom.xml index e5cd639a3..27dfda5c7 100644 --- a/plugins/struts1/pom.xml +++ b/plugins/struts1/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-struts1-plugin @@ -34,9 +34,9 @@ Struts 2 Struts 1 Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/struts1 - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/struts1 - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/struts1 + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/struts1 + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/struts1 + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/struts1 diff --git a/plugins/testng/pom.xml b/plugins/testng/pom.xml index e8adb3c74..e23e61a24 100644 --- a/plugins/testng/pom.xml +++ b/plugins/testng/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-testng-plugin @@ -34,9 +34,9 @@ Struts 2 TestNG Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/testng - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/testng - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/testng + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/testng + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/testng + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/testng diff --git a/plugins/tiles/pom.xml b/plugins/tiles/pom.xml index 664d2952d..a230291d5 100644 --- a/plugins/tiles/pom.xml +++ b/plugins/tiles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-tiles-plugin @@ -34,9 +34,9 @@ Struts 2 Tiles Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/tiles + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/tiles + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/tiles diff --git a/plugins/tiles3/pom.xml b/plugins/tiles3/pom.xml index 39ad1fadb..ca83f5041 100644 --- a/plugins/tiles3/pom.xml +++ b/plugins/tiles3/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 struts2-tiles3-plugin @@ -34,9 +34,9 @@ Struts 2 Tiles 3 Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles3 - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles3 - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles3 + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/tiles3 + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/tiles3 + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/tiles3 diff --git a/pom.xml b/pom.xml index cc7e82e04..6ec0228bc 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ 4.0.0 struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 pom Struts 2 http://struts.apache.org/2.x/ @@ -28,9 +28,9 @@ --> - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14 - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14 - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14 + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1 + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1 + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1 diff --git a/xwork-core/pom.xml b/xwork-core/pom.xml index d6bf8b94b..013290dcf 100644 --- a/xwork-core/pom.xml +++ b/xwork-core/pom.xml @@ -5,7 +5,7 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts.xwork @@ -15,9 +15,9 @@ - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/xwork-core - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/xwork-core - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/xwork-core + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/xwork-core + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/xwork-core + http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/xwork-core From dfa307369033a4ba4b52620bc6c00441fd64c83b Mon Sep 17 00:00:00 2001 From: Maurizio Cucchiara Date: Thu, 18 Apr 2013 13:33:45 +0000 Subject: [PATCH 05/11] [maven-release-plugin] prepare for next development iteration git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X@1469315 13f79535-47bb-0310-9956-ffa450edef68 --- apps/blank/pom.xml | 8 ++++---- apps/jboss-blank/pom.xml | 8 ++++---- apps/mailreader/pom.xml | 8 ++++---- apps/pom.xml | 8 ++++---- apps/portlet/pom.xml | 8 ++++---- apps/rest-showcase/pom.xml | 4 ++-- apps/showcase/pom.xml | 8 ++++---- archetypes/pom.xml | 8 ++++---- archetypes/struts2-archetype-blank/pom.xml | 10 +++++----- archetypes/struts2-archetype-convention/pom.xml | 10 +++++----- archetypes/struts2-archetype-dbportlet/pom.xml | 10 +++++----- archetypes/struts2-archetype-plugin/pom.xml | 10 +++++----- archetypes/struts2-archetype-portlet/pom.xml | 10 +++++----- archetypes/struts2-archetype-starter/pom.xml | 10 +++++----- assembly/pom.xml | 8 ++++---- bundles/admin/pom.xml | 8 ++++---- bundles/demo/pom.xml | 8 ++++---- bundles/pom.xml | 8 ++++---- core/pom.xml | 8 ++++---- plugins/cdi/pom.xml | 2 +- plugins/codebehind/pom.xml | 8 ++++---- plugins/config-browser/pom.xml | 8 ++++---- plugins/convention/pom.xml | 8 ++++---- plugins/dojo/pom.xml | 8 ++++---- plugins/dwr/pom.xml | 8 ++++---- plugins/embeddedjsp/pom.xml | 8 ++++---- plugins/gxp/pom.xml | 8 ++++---- plugins/jasperreports/pom.xml | 8 ++++---- plugins/javatemplates/pom.xml | 8 ++++---- plugins/jfreechart/pom.xml | 8 ++++---- plugins/jsf/pom.xml | 8 ++++---- plugins/json/pom.xml | 8 ++++---- plugins/junit/pom.xml | 8 ++++---- plugins/osgi/pom.xml | 8 ++++---- plugins/oval/pom.xml | 8 ++++---- plugins/pell-multipart/pom.xml | 8 ++++---- plugins/plexus/pom.xml | 8 ++++---- plugins/pom.xml | 8 ++++---- plugins/portlet-tiles/pom.xml | 8 ++++---- plugins/portlet/pom.xml | 8 ++++---- plugins/rest/pom.xml | 4 ++-- plugins/sitegraph/pom.xml | 8 ++++---- plugins/sitemesh/pom.xml | 8 ++++---- plugins/spring/pom.xml | 8 ++++---- plugins/struts1/pom.xml | 8 ++++---- plugins/testng/pom.xml | 8 ++++---- plugins/tiles/pom.xml | 8 ++++---- plugins/tiles3/pom.xml | 8 ++++---- pom.xml | 8 ++++---- xwork-core/pom.xml | 8 ++++---- 50 files changed, 199 insertions(+), 199 deletions(-) diff --git a/apps/blank/pom.xml b/apps/blank/pom.xml index 7fdd530a6..34e8f7c4f 100644 --- a/apps/blank/pom.xml +++ b/apps/blank/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-blank @@ -34,9 +34,9 @@ Blank Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps/blank - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps/blank - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/apps/blank + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/blank + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/blank + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/blank diff --git a/apps/jboss-blank/pom.xml b/apps/jboss-blank/pom.xml index a1219109f..12bd168ba 100644 --- a/apps/jboss-blank/pom.xml +++ b/apps/jboss-blank/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-jboss-blank @@ -34,9 +34,9 @@ JBoss Blank Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps/jboss-blank - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps/jboss-blank - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/apps/jboss-blank + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/jboss-blank + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/jboss-blank + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/jboss-blank diff --git a/apps/mailreader/pom.xml b/apps/mailreader/pom.xml index c1bac3416..3b434bb91 100644 --- a/apps/mailreader/pom.xml +++ b/apps/mailreader/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-mailreader @@ -34,9 +34,9 @@ Mail Reader Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps/mailreader - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps/mailreader - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/apps/mailreader + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/mailreader + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/mailreader + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/mailreader diff --git a/apps/pom.xml b/apps/pom.xml index b06faab1b..7565384b5 100644 --- a/apps/pom.xml +++ b/apps/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-apps @@ -42,9 +42,9 @@ - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/apps + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps diff --git a/apps/portlet/pom.xml b/apps/portlet/pom.xml index 90d85b003..3cb058f67 100644 --- a/apps/portlet/pom.xml +++ b/apps/portlet/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-portlet @@ -34,9 +34,9 @@ Portlet Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps/portlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps/portlet - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/apps/portlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/portlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/portlet + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/portlet diff --git a/apps/rest-showcase/pom.xml b/apps/rest-showcase/pom.xml index 3489ab06d..e76a00935 100644 --- a/apps/rest-showcase/pom.xml +++ b/apps/rest-showcase/pom.xml @@ -26,13 +26,13 @@ org.apache.struts struts2-apps - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-rest-showcase war - 2.3.14.1 + 2.3.14.2-SNAPSHOT Struts 2 Rest Showcase Example Struts 2 Rest Showcase Example diff --git a/apps/showcase/pom.xml b/apps/showcase/pom.xml index 32bd94962..853914490 100644 --- a/apps/showcase/pom.xml +++ b/apps/showcase/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-showcase @@ -34,9 +34,9 @@ Showcase Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps/showcase - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/apps/showcase - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/apps/showcase + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/showcase + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/showcase + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/showcase diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 3dbafa40d..c90e9ed28 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-archetypes @@ -34,9 +34,9 @@ Struts 2 Maven Archetypes - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes - http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes diff --git a/archetypes/struts2-archetype-blank/pom.xml b/archetypes/struts2-archetype-blank/pom.xml index 420646e39..d25817691 100644 --- a/archetypes/struts2-archetype-blank/pom.xml +++ b/archetypes/struts2-archetype-blank/pom.xml @@ -3,19 +3,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1 + 2.3.14.2-SNAPSHOT 4.0.0 struts2-archetype-blank - 2.3.14.1 + 2.3.14.2-SNAPSHOT jar Struts 2 Archetypes - Blank - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-blank - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-blank - http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-blank + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-blank + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-blank + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-blank diff --git a/archetypes/struts2-archetype-convention/pom.xml b/archetypes/struts2-archetype-convention/pom.xml index 0fb53bbe2..6d61b2276 100644 --- a/archetypes/struts2-archetype-convention/pom.xml +++ b/archetypes/struts2-archetype-convention/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1 + 2.3.14.2-SNAPSHOT 4.0.0 struts2-archetype-convention - 2.3.14.1 + 2.3.14.2-SNAPSHOT jar Struts 2 Archetypes - Blank Convention - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-convention - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-convention - http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-convention + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-convention + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-convention + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-convention diff --git a/archetypes/struts2-archetype-dbportlet/pom.xml b/archetypes/struts2-archetype-dbportlet/pom.xml index 738110255..e6c442de8 100644 --- a/archetypes/struts2-archetype-dbportlet/pom.xml +++ b/archetypes/struts2-archetype-dbportlet/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1 + 2.3.14.2-SNAPSHOT 4.0.0 struts2-archetype-dbportlet - 2.3.14.1 + 2.3.14.2-SNAPSHOT jar Struts 2 Archetypes - Database Portlet - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-dbportlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-dbportlet - svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-dbportlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-dbportlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-dbportlet + svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-dbportlet diff --git a/archetypes/struts2-archetype-plugin/pom.xml b/archetypes/struts2-archetype-plugin/pom.xml index 6c6f56f92..bdb6894d6 100644 --- a/archetypes/struts2-archetype-plugin/pom.xml +++ b/archetypes/struts2-archetype-plugin/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1 + 2.3.14.2-SNAPSHOT 4.0.0 struts2-archetype-plugin - 2.3.14.1 + 2.3.14.2-SNAPSHOT jar Struts 2 Archetypes - Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-plugin - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-plugin - http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-plugin + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-plugin + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-plugin + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-plugin diff --git a/archetypes/struts2-archetype-portlet/pom.xml b/archetypes/struts2-archetype-portlet/pom.xml index 25bf5c111..57c0ea735 100644 --- a/archetypes/struts2-archetype-portlet/pom.xml +++ b/archetypes/struts2-archetype-portlet/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1 + 2.3.14.2-SNAPSHOT 4.0.0 struts2-archetype-portlet - 2.3.14.1 + 2.3.14.2-SNAPSHOT jar Struts 2 Archetypes - Portlet - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-portlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-portlet - http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-portlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-portlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-portlet + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-portlet diff --git a/archetypes/struts2-archetype-starter/pom.xml b/archetypes/struts2-archetype-starter/pom.xml index 5357d8de1..007179b60 100644 --- a/archetypes/struts2-archetype-starter/pom.xml +++ b/archetypes/struts2-archetype-starter/pom.xml @@ -4,19 +4,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1 + 2.3.14.2-SNAPSHOT 4.0.0 struts2-archetype-starter - 2.3.14.1 + 2.3.14.2-SNAPSHOT jar Struts 2 Archetypes - Starter - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-starter - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-starter - http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/archetypes/struts2-archetype-starter + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-starter + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-starter + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-starter diff --git a/assembly/pom.xml b/assembly/pom.xml index 640190e3d..c7b5b8851 100644 --- a/assembly/pom.xml +++ b/assembly/pom.xml @@ -11,13 +11,13 @@ org.apache.struts struts2-parent - 2.3.14.1 + 2.3.14.2-SNAPSHOT - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/assembly - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/assembly - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/assembly + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/assembly + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/assembly + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/assembly diff --git a/bundles/admin/pom.xml b/bundles/admin/pom.xml index 92db920d3..10514f12a 100644 --- a/bundles/admin/pom.xml +++ b/bundles/admin/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-osgi-bundles - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-osgi-admin-bundle @@ -12,9 +12,9 @@ Struts 2 OSGi Admin Bundle - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/bundles/admin - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/bundles/admin - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/bundles/admin + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles/admin + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles/admin + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/bundles/admin diff --git a/bundles/demo/pom.xml b/bundles/demo/pom.xml index 53f4c8ca5..541e71460 100644 --- a/bundles/demo/pom.xml +++ b/bundles/demo/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-osgi-bundles - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-osgi-demo-bundle @@ -12,9 +12,9 @@ Struts 2 OSGi Demo Bundle - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/bundles/demo - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/bundles/demo - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/bundles/demo + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles/demo + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles/demo + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/bundles/demo diff --git a/bundles/pom.xml b/bundles/pom.xml index c5ada3f68..6fc81a9df 100755 --- a/bundles/pom.xml +++ b/bundles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-osgi-bundles @@ -34,9 +34,9 @@ Struts OSGi Bundles - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/bundles - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/bundles - http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/bundles + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles diff --git a/core/pom.xml b/core/pom.xml index 5282ab0bd..0e422bd93 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-core @@ -34,9 +34,9 @@ Struts 2 Core - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/core - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/core - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/core + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/core + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/core + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/core diff --git a/plugins/cdi/pom.xml b/plugins/cdi/pom.xml index 82b332bcc..165c2ec37 100644 --- a/plugins/cdi/pom.xml +++ b/plugins/cdi/pom.xml @@ -25,7 +25,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts diff --git a/plugins/codebehind/pom.xml b/plugins/codebehind/pom.xml index 199a86bb3..0765d17e9 100644 --- a/plugins/codebehind/pom.xml +++ b/plugins/codebehind/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-codebehind-plugin @@ -34,9 +34,9 @@ Struts 2 Codebehind Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/codebehind - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/codebehind - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/codebehind + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/codebehind + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/codebehind + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/codebehind diff --git a/plugins/config-browser/pom.xml b/plugins/config-browser/pom.xml index a1cc338ef..2c2d999c5 100644 --- a/plugins/config-browser/pom.xml +++ b/plugins/config-browser/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-config-browser-plugin @@ -34,9 +34,9 @@ Struts 2 Configuration Browser Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/config-browser - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/config-browser - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/config-browser + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/config-browser + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/config-browser + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/config-browser diff --git a/plugins/convention/pom.xml b/plugins/convention/pom.xml index 1e0e51a34..65852118b 100644 --- a/plugins/convention/pom.xml +++ b/plugins/convention/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-convention-plugin @@ -11,9 +11,9 @@ Struts 2 Convention Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/tags/struts2-parent-2.3.14.1/trunk/struts2-convention-plugin - scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/tags/struts2-parent-2.3.14.1/trunk/struts2-convention-plugin - http://svn.apache.org/viewcvs.cgi/struts/sandbox/tags/STRUTS_2_3_14/tags/struts2-parent-2.3.14.1/trunk/struts2-convention-plugin + scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-convention-plugin + scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-convention-plugin + http://svn.apache.org/viewcvs.cgi/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-convention-plugin diff --git a/plugins/dojo/pom.xml b/plugins/dojo/pom.xml index 52989a717..447ac42ff 100644 --- a/plugins/dojo/pom.xml +++ b/plugins/dojo/pom.xml @@ -25,7 +25,7 @@ struts2-plugins org.apache.struts - 2.3.14.1 + 2.3.14.2-SNAPSHOT 4.0.0 org.apache.struts @@ -33,9 +33,9 @@ Struts 2 Dojo Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/dojo - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/dojo - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/dojo + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/dojo + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/dojo + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/dojo diff --git a/plugins/dwr/pom.xml b/plugins/dwr/pom.xml index 47984df50..25fae8324 100644 --- a/plugins/dwr/pom.xml +++ b/plugins/dwr/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-dwr-plugin @@ -34,9 +34,9 @@ Struts 2 DWR Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/dwr - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/dwr - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/dwr + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/dwr + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/dwr + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/dwr diff --git a/plugins/embeddedjsp/pom.xml b/plugins/embeddedjsp/pom.xml index 20de97b72..3381bc3ba 100644 --- a/plugins/embeddedjsp/pom.xml +++ b/plugins/embeddedjsp/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts @@ -35,9 +35,9 @@ Struts 2 Embedded JSP Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/embeddedjsp - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/embeddedjsp - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/embeddedjsp + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/embeddedjsp + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/embeddedjsp + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/embeddedjsp diff --git a/plugins/gxp/pom.xml b/plugins/gxp/pom.xml index dfcf4744f..5ddf3b5f7 100644 --- a/plugins/gxp/pom.xml +++ b/plugins/gxp/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts @@ -13,9 +13,9 @@ http://struts.apache.org - scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/tags/struts2-parent-2.3.14.1/trunk/struts2-gxp-plugin - scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/tags/struts2-parent-2.3.14.1/trunk/struts2-gxp-plugin - http://svn.apache.org/viewcvs.cgi/struts/sandbox/tags/STRUTS_2_3_14/tags/struts2-parent-2.3.14.1/trunk/struts2-gxp-plugin + scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-gxp-plugin + scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-gxp-plugin + http://svn.apache.org/viewcvs.cgi/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-gxp-plugin diff --git a/plugins/jasperreports/pom.xml b/plugins/jasperreports/pom.xml index b940335e3..813e6c1d7 100644 --- a/plugins/jasperreports/pom.xml +++ b/plugins/jasperreports/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-jasperreports-plugin @@ -34,9 +34,9 @@ Struts 2 Jasper Reports Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/jasperreports - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/jasperreports - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/jasperreports + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jasperreports + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jasperreports + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/jasperreports diff --git a/plugins/javatemplates/pom.xml b/plugins/javatemplates/pom.xml index ad2870fc2..5d944ec91 100644 --- a/plugins/javatemplates/pom.xml +++ b/plugins/javatemplates/pom.xml @@ -25,7 +25,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-javatemplates-plugin @@ -33,9 +33,9 @@ Struts 2 Java Templates Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/javatemplates - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/javatemplates - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/javatemplates + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/javatemplates + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/javatemplates + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/javatemplates diff --git a/plugins/jfreechart/pom.xml b/plugins/jfreechart/pom.xml index b49264567..d6608b470 100644 --- a/plugins/jfreechart/pom.xml +++ b/plugins/jfreechart/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-jfreechart-plugin @@ -34,9 +34,9 @@ Struts 2 JFreeChart Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/jfreechart - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/jfreechart - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/jfreechart + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jfreechart + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jfreechart + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/jfreechart diff --git a/plugins/jsf/pom.xml b/plugins/jsf/pom.xml index ed58f1bcc..49ad61a8f 100644 --- a/plugins/jsf/pom.xml +++ b/plugins/jsf/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-jsf-plugin @@ -34,9 +34,9 @@ Struts 2 JSF Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/jsf - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/jsf - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/jsf + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jsf + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jsf + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/jsf diff --git a/plugins/json/pom.xml b/plugins/json/pom.xml index a97958d10..b100d36af 100644 --- a/plugins/json/pom.xml +++ b/plugins/json/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-json-plugin @@ -34,9 +34,9 @@ Struts 2 JSON Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/json - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/json - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/json + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/json + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/json + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/json diff --git a/plugins/junit/pom.xml b/plugins/junit/pom.xml index e29b0b2b3..6b11eca40 100644 --- a/plugins/junit/pom.xml +++ b/plugins/junit/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-junit-plugin @@ -34,9 +34,9 @@ Struts 2 JUnit Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/junit - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/junit - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/junit + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/junit + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/junit + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/junit diff --git a/plugins/osgi/pom.xml b/plugins/osgi/pom.xml index d28fcb53b..5727ca031 100644 --- a/plugins/osgi/pom.xml +++ b/plugins/osgi/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-osgi-plugin @@ -12,9 +12,9 @@ Struts 2 OSGi Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/osgi - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/osgi - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/osgi + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/osgi + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/osgi + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/osgi diff --git a/plugins/oval/pom.xml b/plugins/oval/pom.xml index 223d0d9f7..b9a64494c 100644 --- a/plugins/oval/pom.xml +++ b/plugins/oval/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-oval-plugin @@ -34,9 +34,9 @@ Struts 2 OVal Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/oval - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/oval - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/oval + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/oval + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/oval + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/oval diff --git a/plugins/pell-multipart/pom.xml b/plugins/pell-multipart/pom.xml index 86e171795..581db01e1 100644 --- a/plugins/pell-multipart/pom.xml +++ b/plugins/pell-multipart/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-pell-multipart-plugin @@ -34,9 +34,9 @@ Struts 2 Pell Multipart Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/pell-multipart - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/pell-multipart - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/pell-multipart + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/pell-multipart + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/pell-multipart + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/pell-multipart diff --git a/plugins/plexus/pom.xml b/plugins/plexus/pom.xml index 459244ca0..ac40e3088 100644 --- a/plugins/plexus/pom.xml +++ b/plugins/plexus/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-plexus-plugin @@ -34,9 +34,9 @@ Struts 2 Plexus Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/plexus - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/plexus - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/plexus + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/plexus + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/plexus + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/plexus diff --git a/plugins/pom.xml b/plugins/pom.xml index 661ba54fb..91db0deac 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-plugins @@ -34,9 +34,9 @@ Struts Plugins - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins - http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins diff --git a/plugins/portlet-tiles/pom.xml b/plugins/portlet-tiles/pom.xml index 49c660bb3..5c24b9aec 100644 --- a/plugins/portlet-tiles/pom.xml +++ b/plugins/portlet-tiles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-portlet-tiles-plugin @@ -34,9 +34,9 @@ Struts 2 Portlet Tiles Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/portlet-tiles - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/portlet-tiles - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/portlet-tiles + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet-tiles + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet-tiles + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet-tiles diff --git a/plugins/portlet/pom.xml b/plugins/portlet/pom.xml index 55b4a3e42..27c6fd38c 100644 --- a/plugins/portlet/pom.xml +++ b/plugins/portlet/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-portlet-plugin @@ -11,9 +11,9 @@ Struts 2 Portlet Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/portlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/portlet - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/portlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet diff --git a/plugins/rest/pom.xml b/plugins/rest/pom.xml index e3abee32b..736d176a4 100644 --- a/plugins/rest/pom.xml +++ b/plugins/rest/pom.xml @@ -26,11 +26,11 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-rest-plugin - 2.3.14.1 + 2.3.14.2-SNAPSHOT Struts 2 REST Plugin diff --git a/plugins/sitegraph/pom.xml b/plugins/sitegraph/pom.xml index 23ec6de18..1f647edb6 100644 --- a/plugins/sitegraph/pom.xml +++ b/plugins/sitegraph/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-sitegraph-plugin @@ -34,9 +34,9 @@ Struts 2 Sitegraph Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/sitegraph - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/sitegraph - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/sitegraph + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/sitegraph + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/sitegraph + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/sitegraph diff --git a/plugins/sitemesh/pom.xml b/plugins/sitemesh/pom.xml index 767559087..e5dde5187 100644 --- a/plugins/sitemesh/pom.xml +++ b/plugins/sitemesh/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-sitemesh-plugin @@ -34,9 +34,9 @@ Struts 2 Sitemesh Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/sitemesh - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/sitemesh - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/sitemesh + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/sitemesh + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/sitemesh + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/sitemesh diff --git a/plugins/spring/pom.xml b/plugins/spring/pom.xml index 12ffb3ebe..1f60cae7a 100644 --- a/plugins/spring/pom.xml +++ b/plugins/spring/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-spring-plugin @@ -34,9 +34,9 @@ Struts 2 Spring Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/spring - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/spring - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/spring + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/spring + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/spring + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/spring diff --git a/plugins/struts1/pom.xml b/plugins/struts1/pom.xml index 27dfda5c7..b4935104b 100644 --- a/plugins/struts1/pom.xml +++ b/plugins/struts1/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-struts1-plugin @@ -34,9 +34,9 @@ Struts 2 Struts 1 Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/struts1 - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/struts1 - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/struts1 + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/struts1 + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/struts1 + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/struts1 diff --git a/plugins/testng/pom.xml b/plugins/testng/pom.xml index e23e61a24..e706d342a 100644 --- a/plugins/testng/pom.xml +++ b/plugins/testng/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-testng-plugin @@ -34,9 +34,9 @@ Struts 2 TestNG Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/testng - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/testng - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/testng + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/testng + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/testng + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/testng diff --git a/plugins/tiles/pom.xml b/plugins/tiles/pom.xml index a230291d5..be38f3917 100644 --- a/plugins/tiles/pom.xml +++ b/plugins/tiles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-tiles-plugin @@ -34,9 +34,9 @@ Struts 2 Tiles Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/tiles - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/tiles - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/tiles + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles diff --git a/plugins/tiles3/pom.xml b/plugins/tiles3/pom.xml index ca83f5041..b52acbe40 100644 --- a/plugins/tiles3/pom.xml +++ b/plugins/tiles3/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT struts2-tiles3-plugin @@ -34,9 +34,9 @@ Struts 2 Tiles 3 Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/tiles3 - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/tiles3 - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1/plugins/tiles3 + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles3 + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles3 + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles3 diff --git a/pom.xml b/pom.xml index 6ec0228bc..cb77dab69 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ 4.0.0 struts2-parent - 2.3.14.1 + 2.3.14.2-SNAPSHOT pom Struts 2 http://struts.apache.org/2.x/ @@ -28,9 +28,9 @@ --> - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1 - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1 - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/struts2-parent-2.3.14.1 + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14 + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14 + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14 diff --git a/xwork-core/pom.xml b/xwork-core/pom.xml index 013290dcf..830d5dde0 100644 --- a/xwork-core/pom.xml +++ b/xwork-core/pom.xml @@ -5,7 +5,7 @@ org.apache.struts struts2-parent - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts.xwork @@ -15,9 +15,9 @@ - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/xwork-core - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/xwork-core - http://svn.apache.org/repos/asf/struts/struts2/tags/struts2-parent-2.3.14.1/xwork-core + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/xwork-core + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/xwork-core + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/xwork-core From 1f030bfde093992a42ca467340f66d8576872b39 Mon Sep 17 00:00:00 2001 From: Maurizio Cucchiara Date: Thu, 18 Apr 2013 15:26:22 +0000 Subject: [PATCH 06/11] Rollback to the 2.3.14.1-SNAPSHOT version git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X@1469369 13f79535-47bb-0310-9956-ffa450edef68 --- apps/blank/pom.xml | 2 +- apps/jboss-blank/pom.xml | 2 +- apps/mailreader/pom.xml | 2 +- apps/pom.xml | 2 +- apps/portlet/pom.xml | 2 +- apps/rest-showcase/pom.xml | 4 ++-- apps/showcase/pom.xml | 2 +- archetypes/pom.xml | 2 +- archetypes/struts2-archetype-blank/pom.xml | 4 ++-- archetypes/struts2-archetype-convention/pom.xml | 4 ++-- archetypes/struts2-archetype-dbportlet/pom.xml | 4 ++-- archetypes/struts2-archetype-plugin/pom.xml | 4 ++-- archetypes/struts2-archetype-portlet/pom.xml | 4 ++-- archetypes/struts2-archetype-starter/pom.xml | 4 ++-- assembly/pom.xml | 2 +- bundles/admin/pom.xml | 2 +- bundles/demo/pom.xml | 2 +- bundles/pom.xml | 2 +- core/pom.xml | 2 +- plugins/cdi/pom.xml | 2 +- plugins/codebehind/pom.xml | 2 +- plugins/config-browser/pom.xml | 2 +- plugins/convention/pom.xml | 2 +- plugins/dojo/pom.xml | 2 +- plugins/dwr/pom.xml | 2 +- plugins/embeddedjsp/pom.xml | 2 +- plugins/gxp/pom.xml | 2 +- plugins/jasperreports/pom.xml | 2 +- plugins/javatemplates/pom.xml | 2 +- plugins/jfreechart/pom.xml | 2 +- plugins/jsf/pom.xml | 2 +- plugins/json/pom.xml | 2 +- plugins/junit/pom.xml | 2 +- plugins/osgi/pom.xml | 2 +- plugins/oval/pom.xml | 2 +- plugins/pell-multipart/pom.xml | 2 +- plugins/plexus/pom.xml | 2 +- plugins/pom.xml | 2 +- plugins/portlet-tiles/pom.xml | 2 +- plugins/portlet/pom.xml | 2 +- plugins/rest/pom.xml | 4 ++-- plugins/sitegraph/pom.xml | 2 +- plugins/sitemesh/pom.xml | 2 +- plugins/spring/pom.xml | 2 +- plugins/struts1/pom.xml | 2 +- plugins/testng/pom.xml | 2 +- plugins/tiles/pom.xml | 2 +- plugins/tiles3/pom.xml | 2 +- pom.xml | 2 +- xwork-core/pom.xml | 2 +- 50 files changed, 58 insertions(+), 58 deletions(-) diff --git a/apps/blank/pom.xml b/apps/blank/pom.xml index 34e8f7c4f..1f6acf85c 100644 --- a/apps/blank/pom.xml +++ b/apps/blank/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-blank diff --git a/apps/jboss-blank/pom.xml b/apps/jboss-blank/pom.xml index 12bd168ba..8af3eee67 100644 --- a/apps/jboss-blank/pom.xml +++ b/apps/jboss-blank/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-jboss-blank diff --git a/apps/mailreader/pom.xml b/apps/mailreader/pom.xml index 3b434bb91..8832021f5 100644 --- a/apps/mailreader/pom.xml +++ b/apps/mailreader/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-mailreader diff --git a/apps/pom.xml b/apps/pom.xml index 7565384b5..ccfd251b5 100644 --- a/apps/pom.xml +++ b/apps/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-apps diff --git a/apps/portlet/pom.xml b/apps/portlet/pom.xml index 3cb058f67..aa84586ad 100644 --- a/apps/portlet/pom.xml +++ b/apps/portlet/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-portlet diff --git a/apps/rest-showcase/pom.xml b/apps/rest-showcase/pom.xml index e76a00935..88ed9ae0b 100644 --- a/apps/rest-showcase/pom.xml +++ b/apps/rest-showcase/pom.xml @@ -26,13 +26,13 @@ org.apache.struts struts2-apps - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-rest-showcase war - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT Struts 2 Rest Showcase Example Struts 2 Rest Showcase Example diff --git a/apps/showcase/pom.xml b/apps/showcase/pom.xml index 853914490..305f55e0a 100644 --- a/apps/showcase/pom.xml +++ b/apps/showcase/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-showcase diff --git a/archetypes/pom.xml b/archetypes/pom.xml index c90e9ed28..9a03060c2 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-archetypes diff --git a/archetypes/struts2-archetype-blank/pom.xml b/archetypes/struts2-archetype-blank/pom.xml index d25817691..19efbc4a3 100644 --- a/archetypes/struts2-archetype-blank/pom.xml +++ b/archetypes/struts2-archetype-blank/pom.xml @@ -3,12 +3,12 @@ org.apache.struts struts2-archetypes - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT 4.0.0 struts2-archetype-blank - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT jar Struts 2 Archetypes - Blank diff --git a/archetypes/struts2-archetype-convention/pom.xml b/archetypes/struts2-archetype-convention/pom.xml index 6d61b2276..d373742c4 100644 --- a/archetypes/struts2-archetype-convention/pom.xml +++ b/archetypes/struts2-archetype-convention/pom.xml @@ -2,12 +2,12 @@ org.apache.struts struts2-archetypes - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT 4.0.0 struts2-archetype-convention - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT jar Struts 2 Archetypes - Blank Convention diff --git a/archetypes/struts2-archetype-dbportlet/pom.xml b/archetypes/struts2-archetype-dbportlet/pom.xml index e6c442de8..bbb5328be 100644 --- a/archetypes/struts2-archetype-dbportlet/pom.xml +++ b/archetypes/struts2-archetype-dbportlet/pom.xml @@ -2,12 +2,12 @@ org.apache.struts struts2-archetypes - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT 4.0.0 struts2-archetype-dbportlet - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT jar Struts 2 Archetypes - Database Portlet diff --git a/archetypes/struts2-archetype-plugin/pom.xml b/archetypes/struts2-archetype-plugin/pom.xml index bdb6894d6..5680ff02f 100644 --- a/archetypes/struts2-archetype-plugin/pom.xml +++ b/archetypes/struts2-archetype-plugin/pom.xml @@ -2,12 +2,12 @@ org.apache.struts struts2-archetypes - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT 4.0.0 struts2-archetype-plugin - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT jar Struts 2 Archetypes - Plugin diff --git a/archetypes/struts2-archetype-portlet/pom.xml b/archetypes/struts2-archetype-portlet/pom.xml index 57c0ea735..a72f177f9 100644 --- a/archetypes/struts2-archetype-portlet/pom.xml +++ b/archetypes/struts2-archetype-portlet/pom.xml @@ -2,12 +2,12 @@ org.apache.struts struts2-archetypes - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT 4.0.0 struts2-archetype-portlet - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT jar Struts 2 Archetypes - Portlet diff --git a/archetypes/struts2-archetype-starter/pom.xml b/archetypes/struts2-archetype-starter/pom.xml index 007179b60..550d20fc3 100644 --- a/archetypes/struts2-archetype-starter/pom.xml +++ b/archetypes/struts2-archetype-starter/pom.xml @@ -4,12 +4,12 @@ org.apache.struts struts2-archetypes - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT 4.0.0 struts2-archetype-starter - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT jar Struts 2 Archetypes - Starter diff --git a/assembly/pom.xml b/assembly/pom.xml index c7b5b8851..1118d5302 100644 --- a/assembly/pom.xml +++ b/assembly/pom.xml @@ -11,7 +11,7 @@ org.apache.struts struts2-parent - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT diff --git a/bundles/admin/pom.xml b/bundles/admin/pom.xml index 10514f12a..078e024f6 100644 --- a/bundles/admin/pom.xml +++ b/bundles/admin/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-osgi-bundles - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-osgi-admin-bundle diff --git a/bundles/demo/pom.xml b/bundles/demo/pom.xml index 541e71460..552fd5657 100644 --- a/bundles/demo/pom.xml +++ b/bundles/demo/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-osgi-bundles - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-osgi-demo-bundle diff --git a/bundles/pom.xml b/bundles/pom.xml index 6fc81a9df..ff63eb801 100755 --- a/bundles/pom.xml +++ b/bundles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-osgi-bundles diff --git a/core/pom.xml b/core/pom.xml index 0e422bd93..89ab0f132 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-core diff --git a/plugins/cdi/pom.xml b/plugins/cdi/pom.xml index 165c2ec37..8ab174152 100644 --- a/plugins/cdi/pom.xml +++ b/plugins/cdi/pom.xml @@ -25,7 +25,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts diff --git a/plugins/codebehind/pom.xml b/plugins/codebehind/pom.xml index 0765d17e9..f3a80363c 100644 --- a/plugins/codebehind/pom.xml +++ b/plugins/codebehind/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-codebehind-plugin diff --git a/plugins/config-browser/pom.xml b/plugins/config-browser/pom.xml index 2c2d999c5..d54f90d26 100644 --- a/plugins/config-browser/pom.xml +++ b/plugins/config-browser/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-config-browser-plugin diff --git a/plugins/convention/pom.xml b/plugins/convention/pom.xml index 65852118b..474572f67 100644 --- a/plugins/convention/pom.xml +++ b/plugins/convention/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-convention-plugin diff --git a/plugins/dojo/pom.xml b/plugins/dojo/pom.xml index 447ac42ff..f8e65bae6 100644 --- a/plugins/dojo/pom.xml +++ b/plugins/dojo/pom.xml @@ -25,7 +25,7 @@ struts2-plugins org.apache.struts - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT 4.0.0 org.apache.struts diff --git a/plugins/dwr/pom.xml b/plugins/dwr/pom.xml index 25fae8324..1f9277332 100644 --- a/plugins/dwr/pom.xml +++ b/plugins/dwr/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-dwr-plugin diff --git a/plugins/embeddedjsp/pom.xml b/plugins/embeddedjsp/pom.xml index 3381bc3ba..95936568e 100644 --- a/plugins/embeddedjsp/pom.xml +++ b/plugins/embeddedjsp/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts diff --git a/plugins/gxp/pom.xml b/plugins/gxp/pom.xml index 5ddf3b5f7..4ad11e9b0 100644 --- a/plugins/gxp/pom.xml +++ b/plugins/gxp/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts diff --git a/plugins/jasperreports/pom.xml b/plugins/jasperreports/pom.xml index 813e6c1d7..ea2f17de0 100644 --- a/plugins/jasperreports/pom.xml +++ b/plugins/jasperreports/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-jasperreports-plugin diff --git a/plugins/javatemplates/pom.xml b/plugins/javatemplates/pom.xml index 5d944ec91..6fc29d7d3 100644 --- a/plugins/javatemplates/pom.xml +++ b/plugins/javatemplates/pom.xml @@ -25,7 +25,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-javatemplates-plugin diff --git a/plugins/jfreechart/pom.xml b/plugins/jfreechart/pom.xml index d6608b470..e3195088d 100644 --- a/plugins/jfreechart/pom.xml +++ b/plugins/jfreechart/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-jfreechart-plugin diff --git a/plugins/jsf/pom.xml b/plugins/jsf/pom.xml index 49ad61a8f..c738368a0 100644 --- a/plugins/jsf/pom.xml +++ b/plugins/jsf/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-jsf-plugin diff --git a/plugins/json/pom.xml b/plugins/json/pom.xml index b100d36af..a08283af3 100644 --- a/plugins/json/pom.xml +++ b/plugins/json/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-json-plugin diff --git a/plugins/junit/pom.xml b/plugins/junit/pom.xml index 6b11eca40..c9933fea0 100644 --- a/plugins/junit/pom.xml +++ b/plugins/junit/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-junit-plugin diff --git a/plugins/osgi/pom.xml b/plugins/osgi/pom.xml index 5727ca031..42472e376 100644 --- a/plugins/osgi/pom.xml +++ b/plugins/osgi/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-osgi-plugin diff --git a/plugins/oval/pom.xml b/plugins/oval/pom.xml index b9a64494c..e91e03b6f 100644 --- a/plugins/oval/pom.xml +++ b/plugins/oval/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-oval-plugin diff --git a/plugins/pell-multipart/pom.xml b/plugins/pell-multipart/pom.xml index 581db01e1..043ca1dea 100644 --- a/plugins/pell-multipart/pom.xml +++ b/plugins/pell-multipart/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-pell-multipart-plugin diff --git a/plugins/plexus/pom.xml b/plugins/plexus/pom.xml index ac40e3088..da1fb2134 100644 --- a/plugins/plexus/pom.xml +++ b/plugins/plexus/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-plexus-plugin diff --git a/plugins/pom.xml b/plugins/pom.xml index 91db0deac..b1864db10 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-plugins diff --git a/plugins/portlet-tiles/pom.xml b/plugins/portlet-tiles/pom.xml index 5c24b9aec..99eb7fc81 100644 --- a/plugins/portlet-tiles/pom.xml +++ b/plugins/portlet-tiles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-portlet-tiles-plugin diff --git a/plugins/portlet/pom.xml b/plugins/portlet/pom.xml index 27c6fd38c..499132150 100644 --- a/plugins/portlet/pom.xml +++ b/plugins/portlet/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-portlet-plugin diff --git a/plugins/rest/pom.xml b/plugins/rest/pom.xml index 736d176a4..c0e26de94 100644 --- a/plugins/rest/pom.xml +++ b/plugins/rest/pom.xml @@ -26,11 +26,11 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-rest-plugin - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT Struts 2 REST Plugin diff --git a/plugins/sitegraph/pom.xml b/plugins/sitegraph/pom.xml index 1f647edb6..7d119971c 100644 --- a/plugins/sitegraph/pom.xml +++ b/plugins/sitegraph/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-sitegraph-plugin diff --git a/plugins/sitemesh/pom.xml b/plugins/sitemesh/pom.xml index e5dde5187..d52dc84fc 100644 --- a/plugins/sitemesh/pom.xml +++ b/plugins/sitemesh/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-sitemesh-plugin diff --git a/plugins/spring/pom.xml b/plugins/spring/pom.xml index 1f60cae7a..726546d44 100644 --- a/plugins/spring/pom.xml +++ b/plugins/spring/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-spring-plugin diff --git a/plugins/struts1/pom.xml b/plugins/struts1/pom.xml index b4935104b..e5cd639a3 100644 --- a/plugins/struts1/pom.xml +++ b/plugins/struts1/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-struts1-plugin diff --git a/plugins/testng/pom.xml b/plugins/testng/pom.xml index e706d342a..e8adb3c74 100644 --- a/plugins/testng/pom.xml +++ b/plugins/testng/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-testng-plugin diff --git a/plugins/tiles/pom.xml b/plugins/tiles/pom.xml index be38f3917..664d2952d 100644 --- a/plugins/tiles/pom.xml +++ b/plugins/tiles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-tiles-plugin diff --git a/plugins/tiles3/pom.xml b/plugins/tiles3/pom.xml index b52acbe40..39ad1fadb 100644 --- a/plugins/tiles3/pom.xml +++ b/plugins/tiles3/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT struts2-tiles3-plugin diff --git a/pom.xml b/pom.xml index cb77dab69..cc7e82e04 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ 4.0.0 struts2-parent - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT pom Struts 2 http://struts.apache.org/2.x/ diff --git a/xwork-core/pom.xml b/xwork-core/pom.xml index 830d5dde0..d6bf8b94b 100644 --- a/xwork-core/pom.xml +++ b/xwork-core/pom.xml @@ -5,7 +5,7 @@ org.apache.struts struts2-parent - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts.xwork From 535b610848e7e9c6714f6ce21a6594fc9907d40b Mon Sep 17 00:00:00 2001 From: Maurizio Cucchiara Date: Thu, 18 Apr 2013 15:28:18 +0000 Subject: [PATCH 07/11] Updated the version of the archetypes git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X@1469371 13f79535-47bb-0310-9956-ffa450edef68 --- src/site/resources/archetype-catalog.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/site/resources/archetype-catalog.xml b/src/site/resources/archetype-catalog.xml index 92aa21334..14eb1952b 100644 --- a/src/site/resources/archetype-catalog.xml +++ b/src/site/resources/archetype-catalog.xml @@ -7,42 +7,42 @@ org.apache.struts struts2-archetype-blank - 2.3.14 + 2.3.14.1 http://repo1.maven.org/maven2/ Struts 2 Archetypes - Blank org.apache.struts struts2-archetype-convention - 2.3.14 + 2.3.14.1 http://repo1.maven.org/maven2/ Struts 2 Archetypes - Blank Convention org.apache.struts struts2-archetype-dbportlet - 2.3.14 + 2.3.14.1 http://repo1.maven.org/maven2/ Struts 2 Archetypes - Database Portlet org.apache.struts struts2-archetype-plugin - 2.3.14 + 2.3.14.1 http://repo1.maven.org/maven2/ Struts 2 Archetypes - Plugin org.apache.struts struts2-archetype-portlet - 2.3.14 + 2.3.14.1 http://repo1.maven.org/maven2/ Struts 2 Archetypes - Portlet org.apache.struts struts2-archetype-starter - 2.3.14 + 2.3.14.1 http://repo1.maven.org/maven2/ Struts 2 Archetypes - Starter From 8e0c17e607cf0685316e34ed01cd666aa22a5af4 Mon Sep 17 00:00:00 2001 From: Maurizio Cucchiara Date: Thu, 18 Apr 2013 15:48:53 +0000 Subject: [PATCH 08/11] [maven-release-plugin] prepare release STRUTS_2_3_14_1 git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X@1469382 13f79535-47bb-0310-9956-ffa450edef68 --- apps/blank/pom.xml | 8 ++++---- apps/jboss-blank/pom.xml | 8 ++++---- apps/mailreader/pom.xml | 8 ++++---- apps/pom.xml | 8 ++++---- apps/portlet/pom.xml | 8 ++++---- apps/rest-showcase/pom.xml | 4 ++-- apps/showcase/pom.xml | 8 ++++---- archetypes/pom.xml | 8 ++++---- archetypes/struts2-archetype-blank/pom.xml | 10 +++++----- archetypes/struts2-archetype-convention/pom.xml | 10 +++++----- archetypes/struts2-archetype-dbportlet/pom.xml | 10 +++++----- archetypes/struts2-archetype-plugin/pom.xml | 10 +++++----- archetypes/struts2-archetype-portlet/pom.xml | 10 +++++----- archetypes/struts2-archetype-starter/pom.xml | 10 +++++----- assembly/pom.xml | 8 ++++---- bundles/admin/pom.xml | 8 ++++---- bundles/demo/pom.xml | 8 ++++---- bundles/pom.xml | 8 ++++---- core/pom.xml | 8 ++++---- plugins/cdi/pom.xml | 2 +- plugins/codebehind/pom.xml | 8 ++++---- plugins/config-browser/pom.xml | 8 ++++---- plugins/convention/pom.xml | 8 ++++---- plugins/dojo/pom.xml | 8 ++++---- plugins/dwr/pom.xml | 8 ++++---- plugins/embeddedjsp/pom.xml | 8 ++++---- plugins/gxp/pom.xml | 8 ++++---- plugins/jasperreports/pom.xml | 8 ++++---- plugins/javatemplates/pom.xml | 8 ++++---- plugins/jfreechart/pom.xml | 8 ++++---- plugins/jsf/pom.xml | 8 ++++---- plugins/json/pom.xml | 8 ++++---- plugins/junit/pom.xml | 8 ++++---- plugins/osgi/pom.xml | 8 ++++---- plugins/oval/pom.xml | 8 ++++---- plugins/pell-multipart/pom.xml | 8 ++++---- plugins/plexus/pom.xml | 8 ++++---- plugins/pom.xml | 8 ++++---- plugins/portlet-tiles/pom.xml | 8 ++++---- plugins/portlet/pom.xml | 8 ++++---- plugins/rest/pom.xml | 4 ++-- plugins/sitegraph/pom.xml | 8 ++++---- plugins/sitemesh/pom.xml | 8 ++++---- plugins/spring/pom.xml | 8 ++++---- plugins/struts1/pom.xml | 8 ++++---- plugins/testng/pom.xml | 8 ++++---- plugins/tiles/pom.xml | 8 ++++---- plugins/tiles3/pom.xml | 8 ++++---- pom.xml | 8 ++++---- xwork-core/pom.xml | 8 ++++---- 50 files changed, 199 insertions(+), 199 deletions(-) diff --git a/apps/blank/pom.xml b/apps/blank/pom.xml index 1f6acf85c..159f21f6f 100644 --- a/apps/blank/pom.xml +++ b/apps/blank/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-blank @@ -34,9 +34,9 @@ Blank Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/blank - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/blank - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/blank + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/blank + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/blank + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/apps/blank diff --git a/apps/jboss-blank/pom.xml b/apps/jboss-blank/pom.xml index 8af3eee67..b3bb52102 100644 --- a/apps/jboss-blank/pom.xml +++ b/apps/jboss-blank/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-jboss-blank @@ -34,9 +34,9 @@ JBoss Blank Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/jboss-blank - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/jboss-blank - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/jboss-blank + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/jboss-blank + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/jboss-blank + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/apps/jboss-blank diff --git a/apps/mailreader/pom.xml b/apps/mailreader/pom.xml index 8832021f5..006ac3058 100644 --- a/apps/mailreader/pom.xml +++ b/apps/mailreader/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-mailreader @@ -34,9 +34,9 @@ Mail Reader Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/mailreader - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/mailreader - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/mailreader + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/mailreader + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/mailreader + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/apps/mailreader diff --git a/apps/pom.xml b/apps/pom.xml index ccfd251b5..a6efbe85a 100644 --- a/apps/pom.xml +++ b/apps/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-apps @@ -42,9 +42,9 @@ - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/apps diff --git a/apps/portlet/pom.xml b/apps/portlet/pom.xml index aa84586ad..802fc7ed9 100644 --- a/apps/portlet/pom.xml +++ b/apps/portlet/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-portlet @@ -34,9 +34,9 @@ Portlet Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/portlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/portlet - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/portlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/portlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/portlet + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/apps/portlet diff --git a/apps/rest-showcase/pom.xml b/apps/rest-showcase/pom.xml index 88ed9ae0b..3489ab06d 100644 --- a/apps/rest-showcase/pom.xml +++ b/apps/rest-showcase/pom.xml @@ -26,13 +26,13 @@ org.apache.struts struts2-apps - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-rest-showcase war - 2.3.14.1-SNAPSHOT + 2.3.14.1 Struts 2 Rest Showcase Example Struts 2 Rest Showcase Example diff --git a/apps/showcase/pom.xml b/apps/showcase/pom.xml index 305f55e0a..e1e95dbcb 100644 --- a/apps/showcase/pom.xml +++ b/apps/showcase/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-showcase @@ -34,9 +34,9 @@ Showcase Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/showcase - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/showcase - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/showcase + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/showcase + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/showcase + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/apps/showcase diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 9a03060c2..757cf75c3 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-archetypes @@ -34,9 +34,9 @@ Struts 2 Maven Archetypes - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes diff --git a/archetypes/struts2-archetype-blank/pom.xml b/archetypes/struts2-archetype-blank/pom.xml index 19efbc4a3..1d95f8870 100644 --- a/archetypes/struts2-archetype-blank/pom.xml +++ b/archetypes/struts2-archetype-blank/pom.xml @@ -3,19 +3,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 struts2-archetype-blank - 2.3.14.1-SNAPSHOT + 2.3.14.1 jar Struts 2 Archetypes - Blank - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-blank - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-blank - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-blank + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-blank + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-blank + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-blank diff --git a/archetypes/struts2-archetype-convention/pom.xml b/archetypes/struts2-archetype-convention/pom.xml index d373742c4..18cf21d19 100644 --- a/archetypes/struts2-archetype-convention/pom.xml +++ b/archetypes/struts2-archetype-convention/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 struts2-archetype-convention - 2.3.14.1-SNAPSHOT + 2.3.14.1 jar Struts 2 Archetypes - Blank Convention - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-convention - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-convention - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-convention + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-convention + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-convention + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-convention diff --git a/archetypes/struts2-archetype-dbportlet/pom.xml b/archetypes/struts2-archetype-dbportlet/pom.xml index bbb5328be..0a6aed32c 100644 --- a/archetypes/struts2-archetype-dbportlet/pom.xml +++ b/archetypes/struts2-archetype-dbportlet/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 struts2-archetype-dbportlet - 2.3.14.1-SNAPSHOT + 2.3.14.1 jar Struts 2 Archetypes - Database Portlet - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-dbportlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-dbportlet - svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-dbportlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-dbportlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-dbportlet + svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-dbportlet diff --git a/archetypes/struts2-archetype-plugin/pom.xml b/archetypes/struts2-archetype-plugin/pom.xml index 5680ff02f..73198434c 100644 --- a/archetypes/struts2-archetype-plugin/pom.xml +++ b/archetypes/struts2-archetype-plugin/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 struts2-archetype-plugin - 2.3.14.1-SNAPSHOT + 2.3.14.1 jar Struts 2 Archetypes - Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-plugin - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-plugin - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-plugin + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-plugin + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-plugin + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-plugin diff --git a/archetypes/struts2-archetype-portlet/pom.xml b/archetypes/struts2-archetype-portlet/pom.xml index a72f177f9..6cecac083 100644 --- a/archetypes/struts2-archetype-portlet/pom.xml +++ b/archetypes/struts2-archetype-portlet/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 struts2-archetype-portlet - 2.3.14.1-SNAPSHOT + 2.3.14.1 jar Struts 2 Archetypes - Portlet - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-portlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-portlet - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-portlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-portlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-portlet + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-portlet diff --git a/archetypes/struts2-archetype-starter/pom.xml b/archetypes/struts2-archetype-starter/pom.xml index 550d20fc3..177a154f3 100644 --- a/archetypes/struts2-archetype-starter/pom.xml +++ b/archetypes/struts2-archetype-starter/pom.xml @@ -4,19 +4,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 struts2-archetype-starter - 2.3.14.1-SNAPSHOT + 2.3.14.1 jar Struts 2 Archetypes - Starter - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-starter - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-starter - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-starter + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-starter + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-starter + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-starter diff --git a/assembly/pom.xml b/assembly/pom.xml index 1118d5302..f1b107c8b 100644 --- a/assembly/pom.xml +++ b/assembly/pom.xml @@ -11,13 +11,13 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/assembly - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/assembly - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/assembly + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/assembly + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/assembly + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/assembly diff --git a/bundles/admin/pom.xml b/bundles/admin/pom.xml index 078e024f6..572fb5edd 100644 --- a/bundles/admin/pom.xml +++ b/bundles/admin/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-osgi-bundles - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-osgi-admin-bundle @@ -12,9 +12,9 @@ Struts 2 OSGi Admin Bundle - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles/admin - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles/admin - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/bundles/admin + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles/admin + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles/admin + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/bundles/admin diff --git a/bundles/demo/pom.xml b/bundles/demo/pom.xml index 552fd5657..de9a6bf68 100644 --- a/bundles/demo/pom.xml +++ b/bundles/demo/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-osgi-bundles - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-osgi-demo-bundle @@ -12,9 +12,9 @@ Struts 2 OSGi Demo Bundle - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles/demo - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles/demo - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/bundles/demo + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles/demo + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles/demo + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/bundles/demo diff --git a/bundles/pom.xml b/bundles/pom.xml index ff63eb801..952645e7d 100755 --- a/bundles/pom.xml +++ b/bundles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-osgi-bundles @@ -34,9 +34,9 @@ Struts OSGi Bundles - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles diff --git a/core/pom.xml b/core/pom.xml index 89ab0f132..f9fde1d94 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-core @@ -34,9 +34,9 @@ Struts 2 Core - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/core - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/core - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/core + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/core + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/core + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/core diff --git a/plugins/cdi/pom.xml b/plugins/cdi/pom.xml index 8ab174152..82b332bcc 100644 --- a/plugins/cdi/pom.xml +++ b/plugins/cdi/pom.xml @@ -25,7 +25,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts diff --git a/plugins/codebehind/pom.xml b/plugins/codebehind/pom.xml index f3a80363c..bca839956 100644 --- a/plugins/codebehind/pom.xml +++ b/plugins/codebehind/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-codebehind-plugin @@ -34,9 +34,9 @@ Struts 2 Codebehind Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/codebehind - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/codebehind - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/codebehind + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/codebehind + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/codebehind + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/codebehind diff --git a/plugins/config-browser/pom.xml b/plugins/config-browser/pom.xml index d54f90d26..789592b4c 100644 --- a/plugins/config-browser/pom.xml +++ b/plugins/config-browser/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-config-browser-plugin @@ -34,9 +34,9 @@ Struts 2 Configuration Browser Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/config-browser - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/config-browser - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/config-browser + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/config-browser + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/config-browser + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/config-browser diff --git a/plugins/convention/pom.xml b/plugins/convention/pom.xml index 474572f67..ddc1c8214 100644 --- a/plugins/convention/pom.xml +++ b/plugins/convention/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-convention-plugin @@ -11,9 +11,9 @@ Struts 2 Convention Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-convention-plugin - scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-convention-plugin - http://svn.apache.org/viewcvs.cgi/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-convention-plugin + scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/tags/STRUTS_2_3_14_1/trunk/struts2-convention-plugin + scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/tags/STRUTS_2_3_14_1/trunk/struts2-convention-plugin + http://svn.apache.org/viewcvs.cgi/struts/sandbox/tags/STRUTS_2_3_14/tags/STRUTS_2_3_14_1/trunk/struts2-convention-plugin diff --git a/plugins/dojo/pom.xml b/plugins/dojo/pom.xml index f8e65bae6..418834f97 100644 --- a/plugins/dojo/pom.xml +++ b/plugins/dojo/pom.xml @@ -25,7 +25,7 @@ struts2-plugins org.apache.struts - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 org.apache.struts @@ -33,9 +33,9 @@ Struts 2 Dojo Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/dojo - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/dojo - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/dojo + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/dojo + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/dojo + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/dojo diff --git a/plugins/dwr/pom.xml b/plugins/dwr/pom.xml index 1f9277332..2145dba53 100644 --- a/plugins/dwr/pom.xml +++ b/plugins/dwr/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-dwr-plugin @@ -34,9 +34,9 @@ Struts 2 DWR Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/dwr - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/dwr - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/dwr + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/dwr + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/dwr + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/dwr diff --git a/plugins/embeddedjsp/pom.xml b/plugins/embeddedjsp/pom.xml index 95936568e..2987d1131 100644 --- a/plugins/embeddedjsp/pom.xml +++ b/plugins/embeddedjsp/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts @@ -35,9 +35,9 @@ Struts 2 Embedded JSP Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/embeddedjsp - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/embeddedjsp - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/embeddedjsp + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/embeddedjsp + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/embeddedjsp + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/embeddedjsp diff --git a/plugins/gxp/pom.xml b/plugins/gxp/pom.xml index 4ad11e9b0..59ec4741d 100644 --- a/plugins/gxp/pom.xml +++ b/plugins/gxp/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts @@ -13,9 +13,9 @@ http://struts.apache.org - scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-gxp-plugin - scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-gxp-plugin - http://svn.apache.org/viewcvs.cgi/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-gxp-plugin + scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/tags/STRUTS_2_3_14_1/trunk/struts2-gxp-plugin + scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/tags/STRUTS_2_3_14_1/trunk/struts2-gxp-plugin + http://svn.apache.org/viewcvs.cgi/struts/sandbox/tags/STRUTS_2_3_14/tags/STRUTS_2_3_14_1/trunk/struts2-gxp-plugin diff --git a/plugins/jasperreports/pom.xml b/plugins/jasperreports/pom.xml index ea2f17de0..f3383d0bc 100644 --- a/plugins/jasperreports/pom.xml +++ b/plugins/jasperreports/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-jasperreports-plugin @@ -34,9 +34,9 @@ Struts 2 Jasper Reports Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jasperreports - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jasperreports - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/jasperreports + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jasperreports + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jasperreports + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jasperreports diff --git a/plugins/javatemplates/pom.xml b/plugins/javatemplates/pom.xml index 6fc29d7d3..e484bf717 100644 --- a/plugins/javatemplates/pom.xml +++ b/plugins/javatemplates/pom.xml @@ -25,7 +25,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-javatemplates-plugin @@ -33,9 +33,9 @@ Struts 2 Java Templates Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/javatemplates - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/javatemplates - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/javatemplates + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/javatemplates + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/javatemplates + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/javatemplates diff --git a/plugins/jfreechart/pom.xml b/plugins/jfreechart/pom.xml index e3195088d..3aa9dd504 100644 --- a/plugins/jfreechart/pom.xml +++ b/plugins/jfreechart/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-jfreechart-plugin @@ -34,9 +34,9 @@ Struts 2 JFreeChart Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jfreechart - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jfreechart - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/jfreechart + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jfreechart + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jfreechart + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jfreechart diff --git a/plugins/jsf/pom.xml b/plugins/jsf/pom.xml index c738368a0..ea16c4b21 100644 --- a/plugins/jsf/pom.xml +++ b/plugins/jsf/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-jsf-plugin @@ -34,9 +34,9 @@ Struts 2 JSF Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jsf - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jsf - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/jsf + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jsf + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jsf + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jsf diff --git a/plugins/json/pom.xml b/plugins/json/pom.xml index a08283af3..afac5bb54 100644 --- a/plugins/json/pom.xml +++ b/plugins/json/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-json-plugin @@ -34,9 +34,9 @@ Struts 2 JSON Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/json - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/json - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/json + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/json + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/json + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/json diff --git a/plugins/junit/pom.xml b/plugins/junit/pom.xml index c9933fea0..05b6b2d8c 100644 --- a/plugins/junit/pom.xml +++ b/plugins/junit/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-junit-plugin @@ -34,9 +34,9 @@ Struts 2 JUnit Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/junit - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/junit - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/junit + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/junit + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/junit + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/junit diff --git a/plugins/osgi/pom.xml b/plugins/osgi/pom.xml index 42472e376..8d06c6c63 100644 --- a/plugins/osgi/pom.xml +++ b/plugins/osgi/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-osgi-plugin @@ -12,9 +12,9 @@ Struts 2 OSGi Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/osgi - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/osgi - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/osgi + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/osgi + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/osgi + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/osgi diff --git a/plugins/oval/pom.xml b/plugins/oval/pom.xml index e91e03b6f..200ca40ec 100644 --- a/plugins/oval/pom.xml +++ b/plugins/oval/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-oval-plugin @@ -34,9 +34,9 @@ Struts 2 OVal Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/oval - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/oval - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/oval + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/oval + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/oval + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/oval diff --git a/plugins/pell-multipart/pom.xml b/plugins/pell-multipart/pom.xml index 043ca1dea..5dd1b2e7d 100644 --- a/plugins/pell-multipart/pom.xml +++ b/plugins/pell-multipart/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-pell-multipart-plugin @@ -34,9 +34,9 @@ Struts 2 Pell Multipart Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/pell-multipart - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/pell-multipart - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/pell-multipart + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/pell-multipart + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/pell-multipart + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/pell-multipart diff --git a/plugins/plexus/pom.xml b/plugins/plexus/pom.xml index da1fb2134..7c21a36ec 100644 --- a/plugins/plexus/pom.xml +++ b/plugins/plexus/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-plexus-plugin @@ -34,9 +34,9 @@ Struts 2 Plexus Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/plexus - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/plexus - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/plexus + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/plexus + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/plexus + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/plexus diff --git a/plugins/pom.xml b/plugins/pom.xml index b1864db10..d70bddd3b 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-plugins @@ -34,9 +34,9 @@ Struts Plugins - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins diff --git a/plugins/portlet-tiles/pom.xml b/plugins/portlet-tiles/pom.xml index 99eb7fc81..875cdd5d8 100644 --- a/plugins/portlet-tiles/pom.xml +++ b/plugins/portlet-tiles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-portlet-tiles-plugin @@ -34,9 +34,9 @@ Struts 2 Portlet Tiles Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet-tiles - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet-tiles - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet-tiles + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/portlet-tiles + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/portlet-tiles + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/portlet-tiles diff --git a/plugins/portlet/pom.xml b/plugins/portlet/pom.xml index 499132150..b9223809b 100644 --- a/plugins/portlet/pom.xml +++ b/plugins/portlet/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-portlet-plugin @@ -11,9 +11,9 @@ Struts 2 Portlet Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/portlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/portlet + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/portlet diff --git a/plugins/rest/pom.xml b/plugins/rest/pom.xml index c0e26de94..e3abee32b 100644 --- a/plugins/rest/pom.xml +++ b/plugins/rest/pom.xml @@ -26,11 +26,11 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-rest-plugin - 2.3.14.1-SNAPSHOT + 2.3.14.1 Struts 2 REST Plugin diff --git a/plugins/sitegraph/pom.xml b/plugins/sitegraph/pom.xml index 7d119971c..d35fa8b25 100644 --- a/plugins/sitegraph/pom.xml +++ b/plugins/sitegraph/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-sitegraph-plugin @@ -34,9 +34,9 @@ Struts 2 Sitegraph Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/sitegraph - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/sitegraph - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/sitegraph + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/sitegraph + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/sitegraph + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/sitegraph diff --git a/plugins/sitemesh/pom.xml b/plugins/sitemesh/pom.xml index d52dc84fc..fe3d2dc5c 100644 --- a/plugins/sitemesh/pom.xml +++ b/plugins/sitemesh/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-sitemesh-plugin @@ -34,9 +34,9 @@ Struts 2 Sitemesh Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/sitemesh - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/sitemesh - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/sitemesh + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/sitemesh + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/sitemesh + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/sitemesh diff --git a/plugins/spring/pom.xml b/plugins/spring/pom.xml index 726546d44..b9071b418 100644 --- a/plugins/spring/pom.xml +++ b/plugins/spring/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-spring-plugin @@ -34,9 +34,9 @@ Struts 2 Spring Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/spring - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/spring - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/spring + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/spring + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/spring + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/spring diff --git a/plugins/struts1/pom.xml b/plugins/struts1/pom.xml index e5cd639a3..1cdfe4f17 100644 --- a/plugins/struts1/pom.xml +++ b/plugins/struts1/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-struts1-plugin @@ -34,9 +34,9 @@ Struts 2 Struts 1 Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/struts1 - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/struts1 - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/struts1 + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/struts1 + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/struts1 + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/struts1 diff --git a/plugins/testng/pom.xml b/plugins/testng/pom.xml index e8adb3c74..6faf4afc5 100644 --- a/plugins/testng/pom.xml +++ b/plugins/testng/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-testng-plugin @@ -34,9 +34,9 @@ Struts 2 TestNG Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/testng - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/testng - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/testng + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/testng + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/testng + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/testng diff --git a/plugins/tiles/pom.xml b/plugins/tiles/pom.xml index 664d2952d..817f3542f 100644 --- a/plugins/tiles/pom.xml +++ b/plugins/tiles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-tiles-plugin @@ -34,9 +34,9 @@ Struts 2 Tiles Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/tiles + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/tiles + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/tiles diff --git a/plugins/tiles3/pom.xml b/plugins/tiles3/pom.xml index 39ad1fadb..d638a469c 100644 --- a/plugins/tiles3/pom.xml +++ b/plugins/tiles3/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 struts2-tiles3-plugin @@ -34,9 +34,9 @@ Struts 2 Tiles 3 Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles3 - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles3 - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles3 + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/tiles3 + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/tiles3 + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/tiles3 diff --git a/pom.xml b/pom.xml index cc7e82e04..3a27098c1 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ 4.0.0 struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 pom Struts 2 http://struts.apache.org/2.x/ @@ -28,9 +28,9 @@ --> - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14 - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14 - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14 + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1 + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1 + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1 diff --git a/xwork-core/pom.xml b/xwork-core/pom.xml index d6bf8b94b..acf7706b5 100644 --- a/xwork-core/pom.xml +++ b/xwork-core/pom.xml @@ -5,7 +5,7 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts.xwork @@ -15,9 +15,9 @@ - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/xwork-core - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/xwork-core - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/xwork-core + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/xwork-core + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/xwork-core + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/xwork-core From abe07c22c249456bd81a822702dd2efe9c20a5d8 Mon Sep 17 00:00:00 2001 From: Maurizio Cucchiara Date: Thu, 18 Apr 2013 15:57:34 +0000 Subject: [PATCH 09/11] [maven-release-plugin] prepare for next development iteration git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X@1469389 13f79535-47bb-0310-9956-ffa450edef68 --- apps/blank/pom.xml | 8 ++++---- apps/jboss-blank/pom.xml | 8 ++++---- apps/mailreader/pom.xml | 8 ++++---- apps/pom.xml | 8 ++++---- apps/portlet/pom.xml | 8 ++++---- apps/rest-showcase/pom.xml | 4 ++-- apps/showcase/pom.xml | 8 ++++---- archetypes/pom.xml | 8 ++++---- archetypes/struts2-archetype-blank/pom.xml | 10 +++++----- archetypes/struts2-archetype-convention/pom.xml | 10 +++++----- archetypes/struts2-archetype-dbportlet/pom.xml | 10 +++++----- archetypes/struts2-archetype-plugin/pom.xml | 10 +++++----- archetypes/struts2-archetype-portlet/pom.xml | 10 +++++----- archetypes/struts2-archetype-starter/pom.xml | 10 +++++----- assembly/pom.xml | 8 ++++---- bundles/admin/pom.xml | 8 ++++---- bundles/demo/pom.xml | 8 ++++---- bundles/pom.xml | 8 ++++---- core/pom.xml | 8 ++++---- plugins/cdi/pom.xml | 2 +- plugins/codebehind/pom.xml | 8 ++++---- plugins/config-browser/pom.xml | 8 ++++---- plugins/convention/pom.xml | 8 ++++---- plugins/dojo/pom.xml | 8 ++++---- plugins/dwr/pom.xml | 8 ++++---- plugins/embeddedjsp/pom.xml | 8 ++++---- plugins/gxp/pom.xml | 8 ++++---- plugins/jasperreports/pom.xml | 8 ++++---- plugins/javatemplates/pom.xml | 8 ++++---- plugins/jfreechart/pom.xml | 8 ++++---- plugins/jsf/pom.xml | 8 ++++---- plugins/json/pom.xml | 8 ++++---- plugins/junit/pom.xml | 8 ++++---- plugins/osgi/pom.xml | 8 ++++---- plugins/oval/pom.xml | 8 ++++---- plugins/pell-multipart/pom.xml | 8 ++++---- plugins/plexus/pom.xml | 8 ++++---- plugins/pom.xml | 8 ++++---- plugins/portlet-tiles/pom.xml | 8 ++++---- plugins/portlet/pom.xml | 8 ++++---- plugins/rest/pom.xml | 4 ++-- plugins/sitegraph/pom.xml | 8 ++++---- plugins/sitemesh/pom.xml | 8 ++++---- plugins/spring/pom.xml | 8 ++++---- plugins/struts1/pom.xml | 8 ++++---- plugins/testng/pom.xml | 8 ++++---- plugins/tiles/pom.xml | 8 ++++---- plugins/tiles3/pom.xml | 8 ++++---- pom.xml | 8 ++++---- xwork-core/pom.xml | 8 ++++---- 50 files changed, 199 insertions(+), 199 deletions(-) diff --git a/apps/blank/pom.xml b/apps/blank/pom.xml index 159f21f6f..34e8f7c4f 100644 --- a/apps/blank/pom.xml +++ b/apps/blank/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1 + 2.3.14.2-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_3_14_1/apps/blank - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/blank - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/apps/blank + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/blank + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/blank + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/blank diff --git a/apps/jboss-blank/pom.xml b/apps/jboss-blank/pom.xml index b3bb52102..12bd168ba 100644 --- a/apps/jboss-blank/pom.xml +++ b/apps/jboss-blank/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-jboss-blank @@ -34,9 +34,9 @@ JBoss Blank Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/jboss-blank - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/jboss-blank - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/apps/jboss-blank + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/jboss-blank + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/jboss-blank + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/jboss-blank diff --git a/apps/mailreader/pom.xml b/apps/mailreader/pom.xml index 006ac3058..3b434bb91 100644 --- a/apps/mailreader/pom.xml +++ b/apps/mailreader/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-mailreader @@ -34,9 +34,9 @@ Mail Reader Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/mailreader - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/mailreader - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/apps/mailreader + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/mailreader + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/mailreader + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/mailreader diff --git a/apps/pom.xml b/apps/pom.xml index a6efbe85a..7565384b5 100644 --- a/apps/pom.xml +++ b/apps/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-apps @@ -42,9 +42,9 @@ - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/apps + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps diff --git a/apps/portlet/pom.xml b/apps/portlet/pom.xml index 802fc7ed9..3cb058f67 100644 --- a/apps/portlet/pom.xml +++ b/apps/portlet/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-portlet @@ -34,9 +34,9 @@ Portlet Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/portlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/portlet - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/apps/portlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/portlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/portlet + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/portlet diff --git a/apps/rest-showcase/pom.xml b/apps/rest-showcase/pom.xml index 3489ab06d..e76a00935 100644 --- a/apps/rest-showcase/pom.xml +++ b/apps/rest-showcase/pom.xml @@ -26,13 +26,13 @@ org.apache.struts struts2-apps - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-rest-showcase war - 2.3.14.1 + 2.3.14.2-SNAPSHOT Struts 2 Rest Showcase Example Struts 2 Rest Showcase Example diff --git a/apps/showcase/pom.xml b/apps/showcase/pom.xml index e1e95dbcb..853914490 100644 --- a/apps/showcase/pom.xml +++ b/apps/showcase/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-showcase @@ -34,9 +34,9 @@ Showcase Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/showcase - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/showcase - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/apps/showcase + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/showcase + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/showcase + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/showcase diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 757cf75c3..c90e9ed28 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-archetypes @@ -34,9 +34,9 @@ Struts 2 Maven Archetypes - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes diff --git a/archetypes/struts2-archetype-blank/pom.xml b/archetypes/struts2-archetype-blank/pom.xml index 1d95f8870..d25817691 100644 --- a/archetypes/struts2-archetype-blank/pom.xml +++ b/archetypes/struts2-archetype-blank/pom.xml @@ -3,19 +3,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1 + 2.3.14.2-SNAPSHOT 4.0.0 struts2-archetype-blank - 2.3.14.1 + 2.3.14.2-SNAPSHOT jar Struts 2 Archetypes - Blank - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-blank - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-blank - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-blank + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-blank + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-blank + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-blank diff --git a/archetypes/struts2-archetype-convention/pom.xml b/archetypes/struts2-archetype-convention/pom.xml index 18cf21d19..6d61b2276 100644 --- a/archetypes/struts2-archetype-convention/pom.xml +++ b/archetypes/struts2-archetype-convention/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1 + 2.3.14.2-SNAPSHOT 4.0.0 struts2-archetype-convention - 2.3.14.1 + 2.3.14.2-SNAPSHOT jar Struts 2 Archetypes - Blank Convention - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-convention - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-convention - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-convention + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-convention + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-convention + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-convention diff --git a/archetypes/struts2-archetype-dbportlet/pom.xml b/archetypes/struts2-archetype-dbportlet/pom.xml index 0a6aed32c..e6c442de8 100644 --- a/archetypes/struts2-archetype-dbportlet/pom.xml +++ b/archetypes/struts2-archetype-dbportlet/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1 + 2.3.14.2-SNAPSHOT 4.0.0 struts2-archetype-dbportlet - 2.3.14.1 + 2.3.14.2-SNAPSHOT jar Struts 2 Archetypes - Database Portlet - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-dbportlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-dbportlet - svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-dbportlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-dbportlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-dbportlet + svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-dbportlet diff --git a/archetypes/struts2-archetype-plugin/pom.xml b/archetypes/struts2-archetype-plugin/pom.xml index 73198434c..bdb6894d6 100644 --- a/archetypes/struts2-archetype-plugin/pom.xml +++ b/archetypes/struts2-archetype-plugin/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1 + 2.3.14.2-SNAPSHOT 4.0.0 struts2-archetype-plugin - 2.3.14.1 + 2.3.14.2-SNAPSHOT jar Struts 2 Archetypes - Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-plugin - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-plugin - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-plugin + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-plugin + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-plugin + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-plugin diff --git a/archetypes/struts2-archetype-portlet/pom.xml b/archetypes/struts2-archetype-portlet/pom.xml index 6cecac083..57c0ea735 100644 --- a/archetypes/struts2-archetype-portlet/pom.xml +++ b/archetypes/struts2-archetype-portlet/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1 + 2.3.14.2-SNAPSHOT 4.0.0 struts2-archetype-portlet - 2.3.14.1 + 2.3.14.2-SNAPSHOT jar Struts 2 Archetypes - Portlet - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-portlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-portlet - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-portlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-portlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-portlet + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-portlet diff --git a/archetypes/struts2-archetype-starter/pom.xml b/archetypes/struts2-archetype-starter/pom.xml index 177a154f3..007179b60 100644 --- a/archetypes/struts2-archetype-starter/pom.xml +++ b/archetypes/struts2-archetype-starter/pom.xml @@ -4,19 +4,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1 + 2.3.14.2-SNAPSHOT 4.0.0 struts2-archetype-starter - 2.3.14.1 + 2.3.14.2-SNAPSHOT jar Struts 2 Archetypes - Starter - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-starter - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-starter - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-starter + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-starter + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-starter + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-starter diff --git a/assembly/pom.xml b/assembly/pom.xml index f1b107c8b..c7b5b8851 100644 --- a/assembly/pom.xml +++ b/assembly/pom.xml @@ -11,13 +11,13 @@ org.apache.struts struts2-parent - 2.3.14.1 + 2.3.14.2-SNAPSHOT - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/assembly - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/assembly - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/assembly + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/assembly + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/assembly + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/assembly diff --git a/bundles/admin/pom.xml b/bundles/admin/pom.xml index 572fb5edd..10514f12a 100644 --- a/bundles/admin/pom.xml +++ b/bundles/admin/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-osgi-bundles - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-osgi-admin-bundle @@ -12,9 +12,9 @@ Struts 2 OSGi Admin Bundle - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles/admin - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles/admin - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/bundles/admin + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles/admin + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles/admin + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/bundles/admin diff --git a/bundles/demo/pom.xml b/bundles/demo/pom.xml index de9a6bf68..541e71460 100644 --- a/bundles/demo/pom.xml +++ b/bundles/demo/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-osgi-bundles - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-osgi-demo-bundle @@ -12,9 +12,9 @@ Struts 2 OSGi Demo Bundle - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles/demo - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles/demo - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/bundles/demo + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles/demo + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles/demo + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/bundles/demo diff --git a/bundles/pom.xml b/bundles/pom.xml index 952645e7d..6fc81a9df 100755 --- a/bundles/pom.xml +++ b/bundles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-osgi-bundles @@ -34,9 +34,9 @@ Struts OSGi Bundles - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles diff --git a/core/pom.xml b/core/pom.xml index f9fde1d94..0e422bd93 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-core @@ -34,9 +34,9 @@ Struts 2 Core - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/core - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/core - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/core + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/core + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/core + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/core diff --git a/plugins/cdi/pom.xml b/plugins/cdi/pom.xml index 82b332bcc..165c2ec37 100644 --- a/plugins/cdi/pom.xml +++ b/plugins/cdi/pom.xml @@ -25,7 +25,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts diff --git a/plugins/codebehind/pom.xml b/plugins/codebehind/pom.xml index bca839956..0765d17e9 100644 --- a/plugins/codebehind/pom.xml +++ b/plugins/codebehind/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-codebehind-plugin @@ -34,9 +34,9 @@ Struts 2 Codebehind Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/codebehind - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/codebehind - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/codebehind + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/codebehind + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/codebehind + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/codebehind diff --git a/plugins/config-browser/pom.xml b/plugins/config-browser/pom.xml index 789592b4c..2c2d999c5 100644 --- a/plugins/config-browser/pom.xml +++ b/plugins/config-browser/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-config-browser-plugin @@ -34,9 +34,9 @@ Struts 2 Configuration Browser Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/config-browser - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/config-browser - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/config-browser + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/config-browser + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/config-browser + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/config-browser diff --git a/plugins/convention/pom.xml b/plugins/convention/pom.xml index ddc1c8214..65852118b 100644 --- a/plugins/convention/pom.xml +++ b/plugins/convention/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-convention-plugin @@ -11,9 +11,9 @@ Struts 2 Convention Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/tags/STRUTS_2_3_14_1/trunk/struts2-convention-plugin - scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/tags/STRUTS_2_3_14_1/trunk/struts2-convention-plugin - http://svn.apache.org/viewcvs.cgi/struts/sandbox/tags/STRUTS_2_3_14/tags/STRUTS_2_3_14_1/trunk/struts2-convention-plugin + scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-convention-plugin + scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-convention-plugin + http://svn.apache.org/viewcvs.cgi/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-convention-plugin diff --git a/plugins/dojo/pom.xml b/plugins/dojo/pom.xml index 418834f97..447ac42ff 100644 --- a/plugins/dojo/pom.xml +++ b/plugins/dojo/pom.xml @@ -25,7 +25,7 @@ struts2-plugins org.apache.struts - 2.3.14.1 + 2.3.14.2-SNAPSHOT 4.0.0 org.apache.struts @@ -33,9 +33,9 @@ Struts 2 Dojo Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/dojo - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/dojo - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/dojo + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/dojo + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/dojo + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/dojo diff --git a/plugins/dwr/pom.xml b/plugins/dwr/pom.xml index 2145dba53..25fae8324 100644 --- a/plugins/dwr/pom.xml +++ b/plugins/dwr/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-dwr-plugin @@ -34,9 +34,9 @@ Struts 2 DWR Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/dwr - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/dwr - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/dwr + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/dwr + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/dwr + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/dwr diff --git a/plugins/embeddedjsp/pom.xml b/plugins/embeddedjsp/pom.xml index 2987d1131..3381bc3ba 100644 --- a/plugins/embeddedjsp/pom.xml +++ b/plugins/embeddedjsp/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts @@ -35,9 +35,9 @@ Struts 2 Embedded JSP Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/embeddedjsp - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/embeddedjsp - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/embeddedjsp + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/embeddedjsp + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/embeddedjsp + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/embeddedjsp diff --git a/plugins/gxp/pom.xml b/plugins/gxp/pom.xml index 59ec4741d..5ddf3b5f7 100644 --- a/plugins/gxp/pom.xml +++ b/plugins/gxp/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts @@ -13,9 +13,9 @@ http://struts.apache.org - scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/tags/STRUTS_2_3_14_1/trunk/struts2-gxp-plugin - scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/tags/STRUTS_2_3_14_1/trunk/struts2-gxp-plugin - http://svn.apache.org/viewcvs.cgi/struts/sandbox/tags/STRUTS_2_3_14/tags/STRUTS_2_3_14_1/trunk/struts2-gxp-plugin + scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-gxp-plugin + scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-gxp-plugin + http://svn.apache.org/viewcvs.cgi/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-gxp-plugin diff --git a/plugins/jasperreports/pom.xml b/plugins/jasperreports/pom.xml index f3383d0bc..813e6c1d7 100644 --- a/plugins/jasperreports/pom.xml +++ b/plugins/jasperreports/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-jasperreports-plugin @@ -34,9 +34,9 @@ Struts 2 Jasper Reports Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jasperreports - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jasperreports - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jasperreports + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jasperreports + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jasperreports + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/jasperreports diff --git a/plugins/javatemplates/pom.xml b/plugins/javatemplates/pom.xml index e484bf717..5d944ec91 100644 --- a/plugins/javatemplates/pom.xml +++ b/plugins/javatemplates/pom.xml @@ -25,7 +25,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-javatemplates-plugin @@ -33,9 +33,9 @@ Struts 2 Java Templates Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/javatemplates - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/javatemplates - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/javatemplates + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/javatemplates + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/javatemplates + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/javatemplates diff --git a/plugins/jfreechart/pom.xml b/plugins/jfreechart/pom.xml index 3aa9dd504..d6608b470 100644 --- a/plugins/jfreechart/pom.xml +++ b/plugins/jfreechart/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-jfreechart-plugin @@ -34,9 +34,9 @@ Struts 2 JFreeChart Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jfreechart - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jfreechart - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jfreechart + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jfreechart + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jfreechart + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/jfreechart diff --git a/plugins/jsf/pom.xml b/plugins/jsf/pom.xml index ea16c4b21..49ad61a8f 100644 --- a/plugins/jsf/pom.xml +++ b/plugins/jsf/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-jsf-plugin @@ -34,9 +34,9 @@ Struts 2 JSF Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jsf - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jsf - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jsf + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jsf + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jsf + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/jsf diff --git a/plugins/json/pom.xml b/plugins/json/pom.xml index afac5bb54..b100d36af 100644 --- a/plugins/json/pom.xml +++ b/plugins/json/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-json-plugin @@ -34,9 +34,9 @@ Struts 2 JSON Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/json - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/json - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/json + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/json + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/json + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/json diff --git a/plugins/junit/pom.xml b/plugins/junit/pom.xml index 05b6b2d8c..6b11eca40 100644 --- a/plugins/junit/pom.xml +++ b/plugins/junit/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-junit-plugin @@ -34,9 +34,9 @@ Struts 2 JUnit Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/junit - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/junit - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/junit + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/junit + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/junit + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/junit diff --git a/plugins/osgi/pom.xml b/plugins/osgi/pom.xml index 8d06c6c63..5727ca031 100644 --- a/plugins/osgi/pom.xml +++ b/plugins/osgi/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-osgi-plugin @@ -12,9 +12,9 @@ Struts 2 OSGi Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/osgi - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/osgi - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/osgi + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/osgi + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/osgi + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/osgi diff --git a/plugins/oval/pom.xml b/plugins/oval/pom.xml index 200ca40ec..b9a64494c 100644 --- a/plugins/oval/pom.xml +++ b/plugins/oval/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-oval-plugin @@ -34,9 +34,9 @@ Struts 2 OVal Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/oval - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/oval - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/oval + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/oval + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/oval + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/oval diff --git a/plugins/pell-multipart/pom.xml b/plugins/pell-multipart/pom.xml index 5dd1b2e7d..581db01e1 100644 --- a/plugins/pell-multipart/pom.xml +++ b/plugins/pell-multipart/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-pell-multipart-plugin @@ -34,9 +34,9 @@ Struts 2 Pell Multipart Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/pell-multipart - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/pell-multipart - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/pell-multipart + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/pell-multipart + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/pell-multipart + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/pell-multipart diff --git a/plugins/plexus/pom.xml b/plugins/plexus/pom.xml index 7c21a36ec..ac40e3088 100644 --- a/plugins/plexus/pom.xml +++ b/plugins/plexus/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-plexus-plugin @@ -34,9 +34,9 @@ Struts 2 Plexus Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/plexus - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/plexus - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/plexus + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/plexus + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/plexus + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/plexus diff --git a/plugins/pom.xml b/plugins/pom.xml index d70bddd3b..91db0deac 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-plugins @@ -34,9 +34,9 @@ Struts Plugins - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins diff --git a/plugins/portlet-tiles/pom.xml b/plugins/portlet-tiles/pom.xml index 875cdd5d8..5c24b9aec 100644 --- a/plugins/portlet-tiles/pom.xml +++ b/plugins/portlet-tiles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-portlet-tiles-plugin @@ -34,9 +34,9 @@ Struts 2 Portlet Tiles Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/portlet-tiles - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/portlet-tiles - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/portlet-tiles + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet-tiles + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet-tiles + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet-tiles diff --git a/plugins/portlet/pom.xml b/plugins/portlet/pom.xml index b9223809b..27c6fd38c 100644 --- a/plugins/portlet/pom.xml +++ b/plugins/portlet/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-portlet-plugin @@ -11,9 +11,9 @@ Struts 2 Portlet Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/portlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/portlet - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/portlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet diff --git a/plugins/rest/pom.xml b/plugins/rest/pom.xml index e3abee32b..736d176a4 100644 --- a/plugins/rest/pom.xml +++ b/plugins/rest/pom.xml @@ -26,11 +26,11 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-rest-plugin - 2.3.14.1 + 2.3.14.2-SNAPSHOT Struts 2 REST Plugin diff --git a/plugins/sitegraph/pom.xml b/plugins/sitegraph/pom.xml index d35fa8b25..1f647edb6 100644 --- a/plugins/sitegraph/pom.xml +++ b/plugins/sitegraph/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-sitegraph-plugin @@ -34,9 +34,9 @@ Struts 2 Sitegraph Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/sitegraph - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/sitegraph - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/sitegraph + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/sitegraph + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/sitegraph + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/sitegraph diff --git a/plugins/sitemesh/pom.xml b/plugins/sitemesh/pom.xml index fe3d2dc5c..e5dde5187 100644 --- a/plugins/sitemesh/pom.xml +++ b/plugins/sitemesh/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-sitemesh-plugin @@ -34,9 +34,9 @@ Struts 2 Sitemesh Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/sitemesh - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/sitemesh - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/sitemesh + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/sitemesh + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/sitemesh + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/sitemesh diff --git a/plugins/spring/pom.xml b/plugins/spring/pom.xml index b9071b418..1f60cae7a 100644 --- a/plugins/spring/pom.xml +++ b/plugins/spring/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-spring-plugin @@ -34,9 +34,9 @@ Struts 2 Spring Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/spring - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/spring - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/spring + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/spring + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/spring + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/spring diff --git a/plugins/struts1/pom.xml b/plugins/struts1/pom.xml index 1cdfe4f17..b4935104b 100644 --- a/plugins/struts1/pom.xml +++ b/plugins/struts1/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-struts1-plugin @@ -34,9 +34,9 @@ Struts 2 Struts 1 Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/struts1 - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/struts1 - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/struts1 + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/struts1 + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/struts1 + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/struts1 diff --git a/plugins/testng/pom.xml b/plugins/testng/pom.xml index 6faf4afc5..e706d342a 100644 --- a/plugins/testng/pom.xml +++ b/plugins/testng/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-testng-plugin @@ -34,9 +34,9 @@ Struts 2 TestNG Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/testng - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/testng - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/testng + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/testng + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/testng + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/testng diff --git a/plugins/tiles/pom.xml b/plugins/tiles/pom.xml index 817f3542f..be38f3917 100644 --- a/plugins/tiles/pom.xml +++ b/plugins/tiles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts struts2-tiles-plugin @@ -34,9 +34,9 @@ Struts 2 Tiles Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/tiles - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/tiles - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/tiles + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles diff --git a/plugins/tiles3/pom.xml b/plugins/tiles3/pom.xml index d638a469c..b52acbe40 100644 --- a/plugins/tiles3/pom.xml +++ b/plugins/tiles3/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1 + 2.3.14.2-SNAPSHOT struts2-tiles3-plugin @@ -34,9 +34,9 @@ Struts 2 Tiles 3 Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/tiles3 - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/tiles3 - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/tiles3 + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles3 + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles3 + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles3 diff --git a/pom.xml b/pom.xml index 3a27098c1..cb77dab69 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ 4.0.0 struts2-parent - 2.3.14.1 + 2.3.14.2-SNAPSHOT pom Struts 2 http://struts.apache.org/2.x/ @@ -28,9 +28,9 @@ --> - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1 - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1 - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1 + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14 + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14 + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14 diff --git a/xwork-core/pom.xml b/xwork-core/pom.xml index acf7706b5..830d5dde0 100644 --- a/xwork-core/pom.xml +++ b/xwork-core/pom.xml @@ -5,7 +5,7 @@ org.apache.struts struts2-parent - 2.3.14.1 + 2.3.14.2-SNAPSHOT org.apache.struts.xwork @@ -15,9 +15,9 @@ - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/xwork-core - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/xwork-core - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/xwork-core + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/xwork-core + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/xwork-core + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/xwork-core From 3acccdecca3d9ebb5208d5edbf645b8f6bf88bd3 Mon Sep 17 00:00:00 2001 From: Maurizio Cucchiara Date: Thu, 18 Apr 2013 17:26:29 +0000 Subject: [PATCH 10/11] * Rollback to the 2.3.14.1-SNAPSHOT version * Changed the scm infos git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X@1469476 13f79535-47bb-0310-9956-ffa450edef68 --- apps/blank/pom.xml | 8 ++++---- apps/jboss-blank/pom.xml | 8 ++++---- apps/mailreader/pom.xml | 8 ++++---- apps/pom.xml | 8 ++++---- apps/portlet/pom.xml | 8 ++++---- apps/rest-showcase/pom.xml | 4 ++-- apps/showcase/pom.xml | 8 ++++---- archetypes/pom.xml | 8 ++++---- archetypes/struts2-archetype-blank/pom.xml | 10 +++++----- archetypes/struts2-archetype-convention/pom.xml | 10 +++++----- archetypes/struts2-archetype-dbportlet/pom.xml | 10 +++++----- archetypes/struts2-archetype-plugin/pom.xml | 10 +++++----- archetypes/struts2-archetype-portlet/pom.xml | 10 +++++----- archetypes/struts2-archetype-starter/pom.xml | 10 +++++----- assembly/pom.xml | 8 ++++---- bundles/admin/pom.xml | 8 ++++---- bundles/demo/pom.xml | 8 ++++---- bundles/pom.xml | 8 ++++---- core/pom.xml | 8 ++++---- plugins/cdi/pom.xml | 2 +- plugins/codebehind/pom.xml | 8 ++++---- plugins/config-browser/pom.xml | 8 ++++---- plugins/convention/pom.xml | 8 ++++---- plugins/dojo/pom.xml | 8 ++++---- plugins/dwr/pom.xml | 8 ++++---- plugins/embeddedjsp/pom.xml | 8 ++++---- plugins/gxp/pom.xml | 8 ++++---- plugins/jasperreports/pom.xml | 8 ++++---- plugins/javatemplates/pom.xml | 8 ++++---- plugins/jfreechart/pom.xml | 8 ++++---- plugins/jsf/pom.xml | 8 ++++---- plugins/json/pom.xml | 8 ++++---- plugins/junit/pom.xml | 8 ++++---- plugins/osgi/pom.xml | 8 ++++---- plugins/oval/pom.xml | 8 ++++---- plugins/pell-multipart/pom.xml | 8 ++++---- plugins/plexus/pom.xml | 8 ++++---- plugins/pom.xml | 8 ++++---- plugins/portlet-tiles/pom.xml | 8 ++++---- plugins/portlet/pom.xml | 8 ++++---- plugins/rest/pom.xml | 4 ++-- plugins/sitegraph/pom.xml | 8 ++++---- plugins/sitemesh/pom.xml | 8 ++++---- plugins/spring/pom.xml | 8 ++++---- plugins/struts1/pom.xml | 8 ++++---- plugins/testng/pom.xml | 8 ++++---- plugins/tiles/pom.xml | 8 ++++---- plugins/tiles3/pom.xml | 8 ++++---- pom.xml | 8 ++++---- xwork-core/pom.xml | 8 ++++---- 50 files changed, 199 insertions(+), 199 deletions(-) diff --git a/apps/blank/pom.xml b/apps/blank/pom.xml index 34e8f7c4f..18df91a5e 100644 --- a/apps/blank/pom.xml +++ b/apps/blank/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.2-SNAPSHOT + 2.3.14.1-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_3_14/apps/blank - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/blank - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/blank + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps/blank + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps/blank + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/apps/blank diff --git a/apps/jboss-blank/pom.xml b/apps/jboss-blank/pom.xml index 12bd168ba..76ab20a1b 100644 --- a/apps/jboss-blank/pom.xml +++ b/apps/jboss-blank/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-jboss-blank @@ -34,9 +34,9 @@ JBoss Blank Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/jboss-blank - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/jboss-blank - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/jboss-blank + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps/jboss-blank + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps/jboss-blank + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/apps/jboss-blank diff --git a/apps/mailreader/pom.xml b/apps/mailreader/pom.xml index 3b434bb91..1292c3634 100644 --- a/apps/mailreader/pom.xml +++ b/apps/mailreader/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-mailreader @@ -34,9 +34,9 @@ Mail Reader Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/mailreader - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/mailreader - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/mailreader + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps/mailreader + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps/mailreader + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/apps/mailreader diff --git a/apps/pom.xml b/apps/pom.xml index 7565384b5..b2e0a5c3d 100644 --- a/apps/pom.xml +++ b/apps/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-apps @@ -42,9 +42,9 @@ - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/apps diff --git a/apps/portlet/pom.xml b/apps/portlet/pom.xml index 3cb058f67..14ee36b9f 100644 --- a/apps/portlet/pom.xml +++ b/apps/portlet/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-portlet @@ -34,9 +34,9 @@ Portlet Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/portlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/portlet - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/portlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps/portlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps/portlet + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/apps/portlet diff --git a/apps/rest-showcase/pom.xml b/apps/rest-showcase/pom.xml index e76a00935..88ed9ae0b 100644 --- a/apps/rest-showcase/pom.xml +++ b/apps/rest-showcase/pom.xml @@ -26,13 +26,13 @@ org.apache.struts struts2-apps - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-rest-showcase war - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT Struts 2 Rest Showcase Example Struts 2 Rest Showcase Example diff --git a/apps/showcase/pom.xml b/apps/showcase/pom.xml index 853914490..9215abe81 100644 --- a/apps/showcase/pom.xml +++ b/apps/showcase/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-showcase @@ -34,9 +34,9 @@ Showcase Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/showcase - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/apps/showcase - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/apps/showcase + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps/showcase + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps/showcase + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/apps/showcase diff --git a/archetypes/pom.xml b/archetypes/pom.xml index c90e9ed28..c85675289 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-archetypes @@ -34,9 +34,9 @@ Struts 2 Maven Archetypes - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes + http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes diff --git a/archetypes/struts2-archetype-blank/pom.xml b/archetypes/struts2-archetype-blank/pom.xml index d25817691..14a714fc6 100644 --- a/archetypes/struts2-archetype-blank/pom.xml +++ b/archetypes/struts2-archetype-blank/pom.xml @@ -3,19 +3,19 @@ org.apache.struts struts2-archetypes - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT 4.0.0 struts2-archetype-blank - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT jar Struts 2 Archetypes - Blank - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-blank - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-blank - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-blank + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-blank + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-blank + http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-blank diff --git a/archetypes/struts2-archetype-convention/pom.xml b/archetypes/struts2-archetype-convention/pom.xml index 6d61b2276..f8a546dbc 100644 --- a/archetypes/struts2-archetype-convention/pom.xml +++ b/archetypes/struts2-archetype-convention/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT 4.0.0 struts2-archetype-convention - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT jar Struts 2 Archetypes - Blank Convention - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-convention - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-convention - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-convention + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-convention + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-convention + http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-convention diff --git a/archetypes/struts2-archetype-dbportlet/pom.xml b/archetypes/struts2-archetype-dbportlet/pom.xml index e6c442de8..acb65fecf 100644 --- a/archetypes/struts2-archetype-dbportlet/pom.xml +++ b/archetypes/struts2-archetype-dbportlet/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT 4.0.0 struts2-archetype-dbportlet - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT jar Struts 2 Archetypes - Database Portlet - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-dbportlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-dbportlet - svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-dbportlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-dbportlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-dbportlet + svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-dbportlet diff --git a/archetypes/struts2-archetype-plugin/pom.xml b/archetypes/struts2-archetype-plugin/pom.xml index bdb6894d6..1b778ebbb 100644 --- a/archetypes/struts2-archetype-plugin/pom.xml +++ b/archetypes/struts2-archetype-plugin/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT 4.0.0 struts2-archetype-plugin - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT jar Struts 2 Archetypes - Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-plugin - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-plugin - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-plugin + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-plugin + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-plugin + http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-plugin diff --git a/archetypes/struts2-archetype-portlet/pom.xml b/archetypes/struts2-archetype-portlet/pom.xml index 57c0ea735..77dea5cb0 100644 --- a/archetypes/struts2-archetype-portlet/pom.xml +++ b/archetypes/struts2-archetype-portlet/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT 4.0.0 struts2-archetype-portlet - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT jar Struts 2 Archetypes - Portlet - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-portlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-portlet - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-portlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-portlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-portlet + http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-portlet diff --git a/archetypes/struts2-archetype-starter/pom.xml b/archetypes/struts2-archetype-starter/pom.xml index 007179b60..a9933bcb2 100644 --- a/archetypes/struts2-archetype-starter/pom.xml +++ b/archetypes/struts2-archetype-starter/pom.xml @@ -4,19 +4,19 @@ org.apache.struts struts2-archetypes - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT 4.0.0 struts2-archetype-starter - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT jar Struts 2 Archetypes - Starter - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-starter - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-starter - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/archetypes/struts2-archetype-starter + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-starter + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-starter + http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-starter diff --git a/assembly/pom.xml b/assembly/pom.xml index c7b5b8851..3a4fc59a1 100644 --- a/assembly/pom.xml +++ b/assembly/pom.xml @@ -11,13 +11,13 @@ org.apache.struts struts2-parent - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/assembly - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/assembly - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/assembly + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/assembly + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/assembly + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/assembly diff --git a/bundles/admin/pom.xml b/bundles/admin/pom.xml index 10514f12a..780b1f820 100644 --- a/bundles/admin/pom.xml +++ b/bundles/admin/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-osgi-bundles - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-osgi-admin-bundle @@ -12,9 +12,9 @@ Struts 2 OSGi Admin Bundle - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles/admin - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles/admin - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/bundles/admin + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/bundles/admin + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/bundles/admin + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/bundles/admin diff --git a/bundles/demo/pom.xml b/bundles/demo/pom.xml index 541e71460..4461d765e 100644 --- a/bundles/demo/pom.xml +++ b/bundles/demo/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-osgi-bundles - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-osgi-demo-bundle @@ -12,9 +12,9 @@ Struts 2 OSGi Demo Bundle - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles/demo - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles/demo - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/bundles/demo + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/bundles/demo + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/bundles/demo + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/bundles/demo diff --git a/bundles/pom.xml b/bundles/pom.xml index 6fc81a9df..3fddc9ce9 100755 --- a/bundles/pom.xml +++ b/bundles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-osgi-bundles @@ -34,9 +34,9 @@ Struts OSGi Bundles - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/bundles + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/bundles + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/bundles + http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/bundles diff --git a/core/pom.xml b/core/pom.xml index 0e422bd93..9fce4f3a8 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-core @@ -34,9 +34,9 @@ Struts 2 Core - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/core - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/core - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/core + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/core + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/core + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/core diff --git a/plugins/cdi/pom.xml b/plugins/cdi/pom.xml index 165c2ec37..8ab174152 100644 --- a/plugins/cdi/pom.xml +++ b/plugins/cdi/pom.xml @@ -25,7 +25,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts diff --git a/plugins/codebehind/pom.xml b/plugins/codebehind/pom.xml index 0765d17e9..444ff2521 100644 --- a/plugins/codebehind/pom.xml +++ b/plugins/codebehind/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-codebehind-plugin @@ -34,9 +34,9 @@ Struts 2 Codebehind Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/codebehind - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/codebehind - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/codebehind + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/codebehind + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/codebehind + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/codebehind diff --git a/plugins/config-browser/pom.xml b/plugins/config-browser/pom.xml index 2c2d999c5..d0733f0da 100644 --- a/plugins/config-browser/pom.xml +++ b/plugins/config-browser/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-config-browser-plugin @@ -34,9 +34,9 @@ Struts 2 Configuration Browser Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/config-browser - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/config-browser - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/config-browser + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/config-browser + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/config-browser + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/config-browser diff --git a/plugins/convention/pom.xml b/plugins/convention/pom.xml index 65852118b..bb8e810e9 100644 --- a/plugins/convention/pom.xml +++ b/plugins/convention/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-convention-plugin @@ -11,9 +11,9 @@ Struts 2 Convention Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-convention-plugin - scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-convention-plugin - http://svn.apache.org/viewcvs.cgi/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-convention-plugin + scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/branches/STRUTS_2_3_14_X/trunk/struts2-convention-plugin + scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/branches/STRUTS_2_3_14_X/trunk/struts2-convention-plugin + http://svn.apache.org/viewcvs.cgi/struts/sandbox/branches/STRUTS_2_3_14_X/trunk/struts2-convention-plugin diff --git a/plugins/dojo/pom.xml b/plugins/dojo/pom.xml index 447ac42ff..477934b0c 100644 --- a/plugins/dojo/pom.xml +++ b/plugins/dojo/pom.xml @@ -25,7 +25,7 @@ struts2-plugins org.apache.struts - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT 4.0.0 org.apache.struts @@ -33,9 +33,9 @@ Struts 2 Dojo Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/dojo - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/dojo - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/dojo + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/dojo + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/dojo + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/dojo diff --git a/plugins/dwr/pom.xml b/plugins/dwr/pom.xml index 25fae8324..433fdbee7 100644 --- a/plugins/dwr/pom.xml +++ b/plugins/dwr/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-dwr-plugin @@ -34,9 +34,9 @@ Struts 2 DWR Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/dwr - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/dwr - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/dwr + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/dwr + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/dwr + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/dwr diff --git a/plugins/embeddedjsp/pom.xml b/plugins/embeddedjsp/pom.xml index 3381bc3ba..4b6db93cf 100644 --- a/plugins/embeddedjsp/pom.xml +++ b/plugins/embeddedjsp/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts @@ -35,9 +35,9 @@ Struts 2 Embedded JSP Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/embeddedjsp - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/embeddedjsp - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/embeddedjsp + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/embeddedjsp + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/embeddedjsp + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/embeddedjsp diff --git a/plugins/gxp/pom.xml b/plugins/gxp/pom.xml index 5ddf3b5f7..13984c749 100644 --- a/plugins/gxp/pom.xml +++ b/plugins/gxp/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts @@ -13,9 +13,9 @@ http://struts.apache.org - scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-gxp-plugin - scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-gxp-plugin - http://svn.apache.org/viewcvs.cgi/struts/sandbox/tags/STRUTS_2_3_14/trunk/struts2-gxp-plugin + scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/branches/STRUTS_2_3_14_X/trunk/struts2-gxp-plugin + scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/branches/STRUTS_2_3_14_X/trunk/struts2-gxp-plugin + http://svn.apache.org/viewcvs.cgi/struts/sandbox/branches/STRUTS_2_3_14_X/trunk/struts2-gxp-plugin diff --git a/plugins/jasperreports/pom.xml b/plugins/jasperreports/pom.xml index 813e6c1d7..08199fd45 100644 --- a/plugins/jasperreports/pom.xml +++ b/plugins/jasperreports/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-jasperreports-plugin @@ -34,9 +34,9 @@ Struts 2 Jasper Reports Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jasperreports - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jasperreports - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/jasperreports + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/jasperreports + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/jasperreports + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/jasperreports diff --git a/plugins/javatemplates/pom.xml b/plugins/javatemplates/pom.xml index 5d944ec91..fc68e6b4f 100644 --- a/plugins/javatemplates/pom.xml +++ b/plugins/javatemplates/pom.xml @@ -25,7 +25,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-javatemplates-plugin @@ -33,9 +33,9 @@ Struts 2 Java Templates Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/javatemplates - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/javatemplates - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/javatemplates + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/javatemplates + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/javatemplates + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/javatemplates diff --git a/plugins/jfreechart/pom.xml b/plugins/jfreechart/pom.xml index d6608b470..9b6fbf43f 100644 --- a/plugins/jfreechart/pom.xml +++ b/plugins/jfreechart/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-jfreechart-plugin @@ -34,9 +34,9 @@ Struts 2 JFreeChart Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jfreechart - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jfreechart - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/jfreechart + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/jfreechart + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/jfreechart + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/jfreechart diff --git a/plugins/jsf/pom.xml b/plugins/jsf/pom.xml index 49ad61a8f..489d24a37 100644 --- a/plugins/jsf/pom.xml +++ b/plugins/jsf/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-jsf-plugin @@ -34,9 +34,9 @@ Struts 2 JSF Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jsf - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/jsf - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/jsf + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/jsf + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/jsf + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/jsf diff --git a/plugins/json/pom.xml b/plugins/json/pom.xml index b100d36af..298d820b7 100644 --- a/plugins/json/pom.xml +++ b/plugins/json/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-json-plugin @@ -34,9 +34,9 @@ Struts 2 JSON Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/json - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/json - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/json + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/json + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/json + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/json diff --git a/plugins/junit/pom.xml b/plugins/junit/pom.xml index 6b11eca40..d2672cb15 100644 --- a/plugins/junit/pom.xml +++ b/plugins/junit/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-junit-plugin @@ -34,9 +34,9 @@ Struts 2 JUnit Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/junit - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/junit - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/junit + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/junit + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/junit + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/junit diff --git a/plugins/osgi/pom.xml b/plugins/osgi/pom.xml index 5727ca031..e91252c14 100644 --- a/plugins/osgi/pom.xml +++ b/plugins/osgi/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-osgi-plugin @@ -12,9 +12,9 @@ Struts 2 OSGi Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/osgi - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/osgi - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/osgi + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/osgi + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/osgi + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/osgi diff --git a/plugins/oval/pom.xml b/plugins/oval/pom.xml index b9a64494c..ff4f253b6 100644 --- a/plugins/oval/pom.xml +++ b/plugins/oval/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-oval-plugin @@ -34,9 +34,9 @@ Struts 2 OVal Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/oval - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/oval - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/oval + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/oval + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/oval + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/oval diff --git a/plugins/pell-multipart/pom.xml b/plugins/pell-multipart/pom.xml index 581db01e1..49d164e19 100644 --- a/plugins/pell-multipart/pom.xml +++ b/plugins/pell-multipart/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-pell-multipart-plugin @@ -34,9 +34,9 @@ Struts 2 Pell Multipart Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/pell-multipart - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/pell-multipart - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/pell-multipart + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/pell-multipart + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/pell-multipart + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/pell-multipart diff --git a/plugins/plexus/pom.xml b/plugins/plexus/pom.xml index ac40e3088..30422f06c 100644 --- a/plugins/plexus/pom.xml +++ b/plugins/plexus/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-plexus-plugin @@ -34,9 +34,9 @@ Struts 2 Plexus Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/plexus - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/plexus - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/plexus + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/plexus + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/plexus + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/plexus diff --git a/plugins/pom.xml b/plugins/pom.xml index 91db0deac..7f9a2ac15 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-plugins @@ -34,9 +34,9 @@ Struts Plugins - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins + http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins diff --git a/plugins/portlet-tiles/pom.xml b/plugins/portlet-tiles/pom.xml index 5c24b9aec..7b847a5d7 100644 --- a/plugins/portlet-tiles/pom.xml +++ b/plugins/portlet-tiles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-portlet-tiles-plugin @@ -34,9 +34,9 @@ Struts 2 Portlet Tiles Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet-tiles - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet-tiles - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet-tiles + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/portlet-tiles + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/portlet-tiles + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/portlet-tiles diff --git a/plugins/portlet/pom.xml b/plugins/portlet/pom.xml index 27c6fd38c..94993a2bb 100644 --- a/plugins/portlet/pom.xml +++ b/plugins/portlet/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-portlet-plugin @@ -11,9 +11,9 @@ Struts 2 Portlet Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/portlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/portlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/portlet + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/portlet diff --git a/plugins/rest/pom.xml b/plugins/rest/pom.xml index 736d176a4..c0e26de94 100644 --- a/plugins/rest/pom.xml +++ b/plugins/rest/pom.xml @@ -26,11 +26,11 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-rest-plugin - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT Struts 2 REST Plugin diff --git a/plugins/sitegraph/pom.xml b/plugins/sitegraph/pom.xml index 1f647edb6..4dfe01cb1 100644 --- a/plugins/sitegraph/pom.xml +++ b/plugins/sitegraph/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-sitegraph-plugin @@ -34,9 +34,9 @@ Struts 2 Sitegraph Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/sitegraph - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/sitegraph - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/sitegraph + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/sitegraph + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/sitegraph + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/sitegraph diff --git a/plugins/sitemesh/pom.xml b/plugins/sitemesh/pom.xml index e5dde5187..c396f6c22 100644 --- a/plugins/sitemesh/pom.xml +++ b/plugins/sitemesh/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-sitemesh-plugin @@ -34,9 +34,9 @@ Struts 2 Sitemesh Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/sitemesh - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/sitemesh - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/sitemesh + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/sitemesh + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/sitemesh + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/sitemesh diff --git a/plugins/spring/pom.xml b/plugins/spring/pom.xml index 1f60cae7a..f3c37abd2 100644 --- a/plugins/spring/pom.xml +++ b/plugins/spring/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-spring-plugin @@ -34,9 +34,9 @@ Struts 2 Spring Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/spring - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/spring - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/spring + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/spring + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/spring + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/spring diff --git a/plugins/struts1/pom.xml b/plugins/struts1/pom.xml index b4935104b..510d493b6 100644 --- a/plugins/struts1/pom.xml +++ b/plugins/struts1/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-struts1-plugin @@ -34,9 +34,9 @@ Struts 2 Struts 1 Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/struts1 - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/struts1 - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/struts1 + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/struts1 + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/struts1 + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/struts1 diff --git a/plugins/testng/pom.xml b/plugins/testng/pom.xml index e706d342a..a63bf6001 100644 --- a/plugins/testng/pom.xml +++ b/plugins/testng/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-testng-plugin @@ -34,9 +34,9 @@ Struts 2 TestNG Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/testng - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/testng - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/testng + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/testng + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/testng + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/testng diff --git a/plugins/tiles/pom.xml b/plugins/tiles/pom.xml index be38f3917..b16847dcb 100644 --- a/plugins/tiles/pom.xml +++ b/plugins/tiles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts struts2-tiles-plugin @@ -34,9 +34,9 @@ Struts 2 Tiles Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/tiles + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/tiles + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/tiles diff --git a/plugins/tiles3/pom.xml b/plugins/tiles3/pom.xml index b52acbe40..63262a2c7 100644 --- a/plugins/tiles3/pom.xml +++ b/plugins/tiles3/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT struts2-tiles3-plugin @@ -34,9 +34,9 @@ Struts 2 Tiles 3 Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles3 - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles3 - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14/plugins/tiles3 + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/tiles3 + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/tiles3 + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/tiles3 diff --git a/pom.xml b/pom.xml index cb77dab69..d87dee178 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ 4.0.0 struts2-parent - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT pom Struts 2 http://struts.apache.org/2.x/ @@ -28,9 +28,9 @@ --> - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14 - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14 - http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14 + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X + http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X diff --git a/xwork-core/pom.xml b/xwork-core/pom.xml index 830d5dde0..40275b868 100644 --- a/xwork-core/pom.xml +++ b/xwork-core/pom.xml @@ -5,7 +5,7 @@ org.apache.struts struts2-parent - 2.3.14.2-SNAPSHOT + 2.3.14.1-SNAPSHOT org.apache.struts.xwork @@ -15,9 +15,9 @@ - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/xwork-core - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/xwork-core - http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14/xwork-core + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/xwork-core + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/xwork-core + http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/xwork-core From 732472bd6e845a35395aa3f9790b5464f48fca4e Mon Sep 17 00:00:00 2001 From: Maurizio Cucchiara Date: Thu, 18 Apr 2013 18:01:44 +0000 Subject: [PATCH 11/11] [maven-release-plugin] prepare release STRUTS_2_3_14_1 git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X@1469499 13f79535-47bb-0310-9956-ffa450edef68 --- apps/blank/pom.xml | 8 ++++---- apps/jboss-blank/pom.xml | 8 ++++---- apps/mailreader/pom.xml | 8 ++++---- apps/pom.xml | 8 ++++---- apps/portlet/pom.xml | 8 ++++---- apps/rest-showcase/pom.xml | 4 ++-- apps/showcase/pom.xml | 8 ++++---- archetypes/pom.xml | 8 ++++---- archetypes/struts2-archetype-blank/pom.xml | 10 +++++----- archetypes/struts2-archetype-convention/pom.xml | 10 +++++----- archetypes/struts2-archetype-dbportlet/pom.xml | 10 +++++----- archetypes/struts2-archetype-plugin/pom.xml | 10 +++++----- archetypes/struts2-archetype-portlet/pom.xml | 10 +++++----- archetypes/struts2-archetype-starter/pom.xml | 10 +++++----- assembly/pom.xml | 8 ++++---- bundles/admin/pom.xml | 8 ++++---- bundles/demo/pom.xml | 8 ++++---- bundles/pom.xml | 8 ++++---- core/pom.xml | 8 ++++---- plugins/cdi/pom.xml | 2 +- plugins/codebehind/pom.xml | 8 ++++---- plugins/config-browser/pom.xml | 8 ++++---- plugins/convention/pom.xml | 8 ++++---- plugins/dojo/pom.xml | 8 ++++---- plugins/dwr/pom.xml | 8 ++++---- plugins/embeddedjsp/pom.xml | 8 ++++---- plugins/gxp/pom.xml | 8 ++++---- plugins/jasperreports/pom.xml | 8 ++++---- plugins/javatemplates/pom.xml | 8 ++++---- plugins/jfreechart/pom.xml | 8 ++++---- plugins/jsf/pom.xml | 8 ++++---- plugins/json/pom.xml | 8 ++++---- plugins/junit/pom.xml | 8 ++++---- plugins/osgi/pom.xml | 8 ++++---- plugins/oval/pom.xml | 8 ++++---- plugins/pell-multipart/pom.xml | 8 ++++---- plugins/plexus/pom.xml | 8 ++++---- plugins/pom.xml | 8 ++++---- plugins/portlet-tiles/pom.xml | 8 ++++---- plugins/portlet/pom.xml | 8 ++++---- plugins/rest/pom.xml | 4 ++-- plugins/sitegraph/pom.xml | 8 ++++---- plugins/sitemesh/pom.xml | 8 ++++---- plugins/spring/pom.xml | 8 ++++---- plugins/struts1/pom.xml | 8 ++++---- plugins/testng/pom.xml | 8 ++++---- plugins/tiles/pom.xml | 8 ++++---- plugins/tiles3/pom.xml | 8 ++++---- pom.xml | 8 ++++---- xwork-core/pom.xml | 8 ++++---- 50 files changed, 199 insertions(+), 199 deletions(-) diff --git a/apps/blank/pom.xml b/apps/blank/pom.xml index 18df91a5e..159f21f6f 100644 --- a/apps/blank/pom.xml +++ b/apps/blank/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-blank @@ -34,9 +34,9 @@ Blank Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps/blank - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps/blank - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/apps/blank + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/blank + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/blank + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/apps/blank diff --git a/apps/jboss-blank/pom.xml b/apps/jboss-blank/pom.xml index 76ab20a1b..b3bb52102 100644 --- a/apps/jboss-blank/pom.xml +++ b/apps/jboss-blank/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-jboss-blank @@ -34,9 +34,9 @@ JBoss Blank Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps/jboss-blank - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps/jboss-blank - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/apps/jboss-blank + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/jboss-blank + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/jboss-blank + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/apps/jboss-blank diff --git a/apps/mailreader/pom.xml b/apps/mailreader/pom.xml index 1292c3634..006ac3058 100644 --- a/apps/mailreader/pom.xml +++ b/apps/mailreader/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-mailreader @@ -34,9 +34,9 @@ Mail Reader Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps/mailreader - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps/mailreader - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/apps/mailreader + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/mailreader + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/mailreader + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/apps/mailreader diff --git a/apps/pom.xml b/apps/pom.xml index b2e0a5c3d..a6efbe85a 100644 --- a/apps/pom.xml +++ b/apps/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-apps @@ -42,9 +42,9 @@ - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/apps + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/apps diff --git a/apps/portlet/pom.xml b/apps/portlet/pom.xml index 14ee36b9f..802fc7ed9 100644 --- a/apps/portlet/pom.xml +++ b/apps/portlet/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-portlet @@ -34,9 +34,9 @@ Portlet Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps/portlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps/portlet - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/apps/portlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/portlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/portlet + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/apps/portlet diff --git a/apps/rest-showcase/pom.xml b/apps/rest-showcase/pom.xml index 88ed9ae0b..3489ab06d 100644 --- a/apps/rest-showcase/pom.xml +++ b/apps/rest-showcase/pom.xml @@ -26,13 +26,13 @@ org.apache.struts struts2-apps - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-rest-showcase war - 2.3.14.1-SNAPSHOT + 2.3.14.1 Struts 2 Rest Showcase Example Struts 2 Rest Showcase Example diff --git a/apps/showcase/pom.xml b/apps/showcase/pom.xml index 9215abe81..e1e95dbcb 100644 --- a/apps/showcase/pom.xml +++ b/apps/showcase/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-showcase @@ -34,9 +34,9 @@ Showcase Webapp - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps/showcase - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/apps/showcase - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/apps/showcase + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/showcase + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/apps/showcase + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/apps/showcase diff --git a/archetypes/pom.xml b/archetypes/pom.xml index c85675289..757cf75c3 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-archetypes @@ -34,9 +34,9 @@ Struts 2 Maven Archetypes - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes - http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes diff --git a/archetypes/struts2-archetype-blank/pom.xml b/archetypes/struts2-archetype-blank/pom.xml index 14a714fc6..1d95f8870 100644 --- a/archetypes/struts2-archetype-blank/pom.xml +++ b/archetypes/struts2-archetype-blank/pom.xml @@ -3,19 +3,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 struts2-archetype-blank - 2.3.14.1-SNAPSHOT + 2.3.14.1 jar Struts 2 Archetypes - Blank - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-blank - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-blank - http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-blank + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-blank + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-blank + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-blank diff --git a/archetypes/struts2-archetype-convention/pom.xml b/archetypes/struts2-archetype-convention/pom.xml index f8a546dbc..18cf21d19 100644 --- a/archetypes/struts2-archetype-convention/pom.xml +++ b/archetypes/struts2-archetype-convention/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 struts2-archetype-convention - 2.3.14.1-SNAPSHOT + 2.3.14.1 jar Struts 2 Archetypes - Blank Convention - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-convention - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-convention - http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-convention + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-convention + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-convention + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-convention diff --git a/archetypes/struts2-archetype-dbportlet/pom.xml b/archetypes/struts2-archetype-dbportlet/pom.xml index acb65fecf..0a6aed32c 100644 --- a/archetypes/struts2-archetype-dbportlet/pom.xml +++ b/archetypes/struts2-archetype-dbportlet/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 struts2-archetype-dbportlet - 2.3.14.1-SNAPSHOT + 2.3.14.1 jar Struts 2 Archetypes - Database Portlet - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-dbportlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-dbportlet - svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-dbportlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-dbportlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-dbportlet + svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-dbportlet diff --git a/archetypes/struts2-archetype-plugin/pom.xml b/archetypes/struts2-archetype-plugin/pom.xml index 1b778ebbb..73198434c 100644 --- a/archetypes/struts2-archetype-plugin/pom.xml +++ b/archetypes/struts2-archetype-plugin/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 struts2-archetype-plugin - 2.3.14.1-SNAPSHOT + 2.3.14.1 jar Struts 2 Archetypes - Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-plugin - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-plugin - http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-plugin + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-plugin + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-plugin + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-plugin diff --git a/archetypes/struts2-archetype-portlet/pom.xml b/archetypes/struts2-archetype-portlet/pom.xml index 77dea5cb0..6cecac083 100644 --- a/archetypes/struts2-archetype-portlet/pom.xml +++ b/archetypes/struts2-archetype-portlet/pom.xml @@ -2,19 +2,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 struts2-archetype-portlet - 2.3.14.1-SNAPSHOT + 2.3.14.1 jar Struts 2 Archetypes - Portlet - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-portlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-portlet - http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-portlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-portlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-portlet + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-portlet diff --git a/archetypes/struts2-archetype-starter/pom.xml b/archetypes/struts2-archetype-starter/pom.xml index a9933bcb2..177a154f3 100644 --- a/archetypes/struts2-archetype-starter/pom.xml +++ b/archetypes/struts2-archetype-starter/pom.xml @@ -4,19 +4,19 @@ org.apache.struts struts2-archetypes - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 struts2-archetype-starter - 2.3.14.1-SNAPSHOT + 2.3.14.1 jar Struts 2 Archetypes - Starter - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-starter - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-starter - http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/archetypes/struts2-archetype-starter + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-starter + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-starter + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/archetypes/struts2-archetype-starter diff --git a/assembly/pom.xml b/assembly/pom.xml index 3a4fc59a1..f1b107c8b 100644 --- a/assembly/pom.xml +++ b/assembly/pom.xml @@ -11,13 +11,13 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/assembly - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/assembly - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/assembly + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/assembly + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/assembly + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/assembly diff --git a/bundles/admin/pom.xml b/bundles/admin/pom.xml index 780b1f820..572fb5edd 100644 --- a/bundles/admin/pom.xml +++ b/bundles/admin/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-osgi-bundles - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-osgi-admin-bundle @@ -12,9 +12,9 @@ Struts 2 OSGi Admin Bundle - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/bundles/admin - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/bundles/admin - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/bundles/admin + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles/admin + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles/admin + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/bundles/admin diff --git a/bundles/demo/pom.xml b/bundles/demo/pom.xml index 4461d765e..de9a6bf68 100644 --- a/bundles/demo/pom.xml +++ b/bundles/demo/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-osgi-bundles - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-osgi-demo-bundle @@ -12,9 +12,9 @@ Struts 2 OSGi Demo Bundle - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/bundles/demo - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/bundles/demo - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/bundles/demo + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles/demo + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles/demo + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/bundles/demo diff --git a/bundles/pom.xml b/bundles/pom.xml index 3fddc9ce9..952645e7d 100755 --- a/bundles/pom.xml +++ b/bundles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-osgi-bundles @@ -34,9 +34,9 @@ Struts OSGi Bundles - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/bundles - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/bundles - http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/bundles + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/bundles diff --git a/core/pom.xml b/core/pom.xml index 9fce4f3a8..f9fde1d94 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-core @@ -34,9 +34,9 @@ Struts 2 Core - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/core - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/core - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/core + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/core + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/core + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/core diff --git a/plugins/cdi/pom.xml b/plugins/cdi/pom.xml index 8ab174152..82b332bcc 100644 --- a/plugins/cdi/pom.xml +++ b/plugins/cdi/pom.xml @@ -25,7 +25,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts diff --git a/plugins/codebehind/pom.xml b/plugins/codebehind/pom.xml index 444ff2521..bca839956 100644 --- a/plugins/codebehind/pom.xml +++ b/plugins/codebehind/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-codebehind-plugin @@ -34,9 +34,9 @@ Struts 2 Codebehind Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/codebehind - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/codebehind - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/codebehind + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/codebehind + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/codebehind + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/codebehind diff --git a/plugins/config-browser/pom.xml b/plugins/config-browser/pom.xml index d0733f0da..789592b4c 100644 --- a/plugins/config-browser/pom.xml +++ b/plugins/config-browser/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-config-browser-plugin @@ -34,9 +34,9 @@ Struts 2 Configuration Browser Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/config-browser - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/config-browser - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/config-browser + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/config-browser + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/config-browser + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/config-browser diff --git a/plugins/convention/pom.xml b/plugins/convention/pom.xml index bb8e810e9..0b7fd83fe 100644 --- a/plugins/convention/pom.xml +++ b/plugins/convention/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-convention-plugin @@ -11,9 +11,9 @@ Struts 2 Convention Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/branches/STRUTS_2_3_14_X/trunk/struts2-convention-plugin - scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/branches/STRUTS_2_3_14_X/trunk/struts2-convention-plugin - http://svn.apache.org/viewcvs.cgi/struts/sandbox/branches/STRUTS_2_3_14_X/trunk/struts2-convention-plugin + scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/branches/STRUTS_2_3_14_X/tags/STRUTS_2_3_14_1/trunk/struts2-convention-plugin + scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/branches/STRUTS_2_3_14_X/tags/STRUTS_2_3_14_1/trunk/struts2-convention-plugin + http://svn.apache.org/viewcvs.cgi/struts/sandbox/branches/STRUTS_2_3_14_X/tags/STRUTS_2_3_14_1/trunk/struts2-convention-plugin diff --git a/plugins/dojo/pom.xml b/plugins/dojo/pom.xml index 477934b0c..418834f97 100644 --- a/plugins/dojo/pom.xml +++ b/plugins/dojo/pom.xml @@ -25,7 +25,7 @@ struts2-plugins org.apache.struts - 2.3.14.1-SNAPSHOT + 2.3.14.1 4.0.0 org.apache.struts @@ -33,9 +33,9 @@ Struts 2 Dojo Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/dojo - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/dojo - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/dojo + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/dojo + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/dojo + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/dojo diff --git a/plugins/dwr/pom.xml b/plugins/dwr/pom.xml index 433fdbee7..2145dba53 100644 --- a/plugins/dwr/pom.xml +++ b/plugins/dwr/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-dwr-plugin @@ -34,9 +34,9 @@ Struts 2 DWR Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/dwr - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/dwr - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/dwr + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/dwr + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/dwr + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/dwr diff --git a/plugins/embeddedjsp/pom.xml b/plugins/embeddedjsp/pom.xml index 4b6db93cf..2987d1131 100644 --- a/plugins/embeddedjsp/pom.xml +++ b/plugins/embeddedjsp/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts @@ -35,9 +35,9 @@ Struts 2 Embedded JSP Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/embeddedjsp - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/embeddedjsp - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/embeddedjsp + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/embeddedjsp + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/embeddedjsp + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/embeddedjsp diff --git a/plugins/gxp/pom.xml b/plugins/gxp/pom.xml index 13984c749..0188cf09c 100644 --- a/plugins/gxp/pom.xml +++ b/plugins/gxp/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts @@ -13,9 +13,9 @@ http://struts.apache.org - scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/branches/STRUTS_2_3_14_X/trunk/struts2-gxp-plugin - scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/branches/STRUTS_2_3_14_X/trunk/struts2-gxp-plugin - http://svn.apache.org/viewcvs.cgi/struts/sandbox/branches/STRUTS_2_3_14_X/trunk/struts2-gxp-plugin + scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/branches/STRUTS_2_3_14_X/tags/STRUTS_2_3_14_1/trunk/struts2-gxp-plugin + scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/branches/STRUTS_2_3_14_X/tags/STRUTS_2_3_14_1/trunk/struts2-gxp-plugin + http://svn.apache.org/viewcvs.cgi/struts/sandbox/branches/STRUTS_2_3_14_X/tags/STRUTS_2_3_14_1/trunk/struts2-gxp-plugin diff --git a/plugins/jasperreports/pom.xml b/plugins/jasperreports/pom.xml index 08199fd45..f3383d0bc 100644 --- a/plugins/jasperreports/pom.xml +++ b/plugins/jasperreports/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-jasperreports-plugin @@ -34,9 +34,9 @@ Struts 2 Jasper Reports Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/jasperreports - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/jasperreports - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/jasperreports + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jasperreports + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jasperreports + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jasperreports diff --git a/plugins/javatemplates/pom.xml b/plugins/javatemplates/pom.xml index fc68e6b4f..e484bf717 100644 --- a/plugins/javatemplates/pom.xml +++ b/plugins/javatemplates/pom.xml @@ -25,7 +25,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-javatemplates-plugin @@ -33,9 +33,9 @@ Struts 2 Java Templates Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/javatemplates - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/javatemplates - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/javatemplates + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/javatemplates + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/javatemplates + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/javatemplates diff --git a/plugins/jfreechart/pom.xml b/plugins/jfreechart/pom.xml index 9b6fbf43f..3aa9dd504 100644 --- a/plugins/jfreechart/pom.xml +++ b/plugins/jfreechart/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-jfreechart-plugin @@ -34,9 +34,9 @@ Struts 2 JFreeChart Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/jfreechart - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/jfreechart - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/jfreechart + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jfreechart + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jfreechart + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jfreechart diff --git a/plugins/jsf/pom.xml b/plugins/jsf/pom.xml index 489d24a37..ea16c4b21 100644 --- a/plugins/jsf/pom.xml +++ b/plugins/jsf/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-jsf-plugin @@ -34,9 +34,9 @@ Struts 2 JSF Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/jsf - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/jsf - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/jsf + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jsf + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jsf + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/jsf diff --git a/plugins/json/pom.xml b/plugins/json/pom.xml index 298d820b7..afac5bb54 100644 --- a/plugins/json/pom.xml +++ b/plugins/json/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-json-plugin @@ -34,9 +34,9 @@ Struts 2 JSON Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/json - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/json - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/json + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/json + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/json + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/json diff --git a/plugins/junit/pom.xml b/plugins/junit/pom.xml index d2672cb15..05b6b2d8c 100644 --- a/plugins/junit/pom.xml +++ b/plugins/junit/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-junit-plugin @@ -34,9 +34,9 @@ Struts 2 JUnit Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/junit - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/junit - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/junit + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/junit + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/junit + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/junit diff --git a/plugins/osgi/pom.xml b/plugins/osgi/pom.xml index e91252c14..8d06c6c63 100644 --- a/plugins/osgi/pom.xml +++ b/plugins/osgi/pom.xml @@ -4,7 +4,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-osgi-plugin @@ -12,9 +12,9 @@ Struts 2 OSGi Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/osgi - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/osgi - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/osgi + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/osgi + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/osgi + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/osgi diff --git a/plugins/oval/pom.xml b/plugins/oval/pom.xml index ff4f253b6..200ca40ec 100644 --- a/plugins/oval/pom.xml +++ b/plugins/oval/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-oval-plugin @@ -34,9 +34,9 @@ Struts 2 OVal Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/oval - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/oval - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/oval + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/oval + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/oval + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/oval diff --git a/plugins/pell-multipart/pom.xml b/plugins/pell-multipart/pom.xml index 49d164e19..5dd1b2e7d 100644 --- a/plugins/pell-multipart/pom.xml +++ b/plugins/pell-multipart/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-pell-multipart-plugin @@ -34,9 +34,9 @@ Struts 2 Pell Multipart Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/pell-multipart - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/pell-multipart - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/pell-multipart + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/pell-multipart + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/pell-multipart + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/pell-multipart diff --git a/plugins/plexus/pom.xml b/plugins/plexus/pom.xml index 30422f06c..7c21a36ec 100644 --- a/plugins/plexus/pom.xml +++ b/plugins/plexus/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-plexus-plugin @@ -34,9 +34,9 @@ Struts 2 Plexus Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/plexus - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/plexus - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/plexus + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/plexus + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/plexus + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/plexus diff --git a/plugins/pom.xml b/plugins/pom.xml index 7f9a2ac15..d70bddd3b 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-plugins @@ -34,9 +34,9 @@ Struts Plugins - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins - http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins diff --git a/plugins/portlet-tiles/pom.xml b/plugins/portlet-tiles/pom.xml index 7b847a5d7..875cdd5d8 100644 --- a/plugins/portlet-tiles/pom.xml +++ b/plugins/portlet-tiles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-portlet-tiles-plugin @@ -34,9 +34,9 @@ Struts 2 Portlet Tiles Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/portlet-tiles - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/portlet-tiles - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/portlet-tiles + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/portlet-tiles + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/portlet-tiles + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/portlet-tiles diff --git a/plugins/portlet/pom.xml b/plugins/portlet/pom.xml index 94993a2bb..b9223809b 100644 --- a/plugins/portlet/pom.xml +++ b/plugins/portlet/pom.xml @@ -3,7 +3,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-portlet-plugin @@ -11,9 +11,9 @@ Struts 2 Portlet Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/portlet - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/portlet - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/portlet + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/portlet + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/portlet + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/portlet diff --git a/plugins/rest/pom.xml b/plugins/rest/pom.xml index c0e26de94..e3abee32b 100644 --- a/plugins/rest/pom.xml +++ b/plugins/rest/pom.xml @@ -26,11 +26,11 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-rest-plugin - 2.3.14.1-SNAPSHOT + 2.3.14.1 Struts 2 REST Plugin diff --git a/plugins/sitegraph/pom.xml b/plugins/sitegraph/pom.xml index 4dfe01cb1..d35fa8b25 100644 --- a/plugins/sitegraph/pom.xml +++ b/plugins/sitegraph/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-sitegraph-plugin @@ -34,9 +34,9 @@ Struts 2 Sitegraph Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/sitegraph - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/sitegraph - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/sitegraph + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/sitegraph + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/sitegraph + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/sitegraph diff --git a/plugins/sitemesh/pom.xml b/plugins/sitemesh/pom.xml index c396f6c22..fe3d2dc5c 100644 --- a/plugins/sitemesh/pom.xml +++ b/plugins/sitemesh/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-sitemesh-plugin @@ -34,9 +34,9 @@ Struts 2 Sitemesh Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/sitemesh - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/sitemesh - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/sitemesh + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/sitemesh + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/sitemesh + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/sitemesh diff --git a/plugins/spring/pom.xml b/plugins/spring/pom.xml index f3c37abd2..b9071b418 100644 --- a/plugins/spring/pom.xml +++ b/plugins/spring/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-spring-plugin @@ -34,9 +34,9 @@ Struts 2 Spring Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/spring - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/spring - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/spring + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/spring + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/spring + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/spring diff --git a/plugins/struts1/pom.xml b/plugins/struts1/pom.xml index 510d493b6..1cdfe4f17 100644 --- a/plugins/struts1/pom.xml +++ b/plugins/struts1/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-struts1-plugin @@ -34,9 +34,9 @@ Struts 2 Struts 1 Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/struts1 - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/struts1 - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/struts1 + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/struts1 + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/struts1 + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/struts1 diff --git a/plugins/testng/pom.xml b/plugins/testng/pom.xml index a63bf6001..6faf4afc5 100644 --- a/plugins/testng/pom.xml +++ b/plugins/testng/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-testng-plugin @@ -34,9 +34,9 @@ Struts 2 TestNG Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/testng - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/testng - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/testng + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/testng + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/testng + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/testng diff --git a/plugins/tiles/pom.xml b/plugins/tiles/pom.xml index b16847dcb..817f3542f 100644 --- a/plugins/tiles/pom.xml +++ b/plugins/tiles/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts struts2-tiles-plugin @@ -34,9 +34,9 @@ Struts 2 Tiles Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/tiles - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/tiles - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/tiles + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/tiles + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/tiles + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/tiles diff --git a/plugins/tiles3/pom.xml b/plugins/tiles3/pom.xml index 63262a2c7..d638a469c 100644 --- a/plugins/tiles3/pom.xml +++ b/plugins/tiles3/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-plugins - 2.3.14.1-SNAPSHOT + 2.3.14.1 struts2-tiles3-plugin @@ -34,9 +34,9 @@ Struts 2 Tiles 3 Plugin - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/tiles3 - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/plugins/tiles3 - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X/plugins/tiles3 + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/tiles3 + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/plugins/tiles3 + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1/plugins/tiles3 diff --git a/pom.xml b/pom.xml index d87dee178..3a27098c1 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ 4.0.0 struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 pom Struts 2 http://struts.apache.org/2.x/ @@ -28,9 +28,9 @@ --> - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X - http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_3_14_X + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1 + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1 + http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_3_14_1 diff --git a/xwork-core/pom.xml b/xwork-core/pom.xml index 40275b868..acf7706b5 100644 --- a/xwork-core/pom.xml +++ b/xwork-core/pom.xml @@ -5,7 +5,7 @@ org.apache.struts struts2-parent - 2.3.14.1-SNAPSHOT + 2.3.14.1 org.apache.struts.xwork @@ -15,9 +15,9 @@ - scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/xwork-core - scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/xwork-core - http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_X/xwork-core + scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/xwork-core + scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/xwork-core + http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_3_14_1/xwork-core