struts git commit: Improves validation RegEx
Repository: struts Updated Branches: refs/heads/support-2-3 1c92a8b2c -> eccc31ebc Improves validation RegEx Project: http://git-wip-us.apache.org/repos/asf/struts/repo Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/eccc31eb Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/eccc31eb Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/eccc31eb Branch: refs/heads/support-2-3 Commit: eccc31ebce5430f9e91b9684c63eaaf885e603f9 Parents: 1c92a8b Author: Lukasz Lenart Authored: Tue Jun 14 06:53:36 2016 +0200 Committer: Lukasz Lenart Committed: Tue Jun 14 06:53:36 2016 +0200 -- .../com/opensymphony/xwork2/validator/validators/URLValidator.java | 2 +- .../java/com/opensymphony/xwork2/validator/URLValidatorTest.java | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) -- http://git-wip-us.apache.org/repos/asf/struts/blob/eccc31eb/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/URLValidator.java -- diff --git a/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/URLValidator.java b/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/URLValidator.java index 767416d..9aa3c9d 100644 --- a/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/URLValidator.java +++ b/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/URLValidator.java @@ -82,7 +82,7 @@ public class URLValidator extends FieldValidatorSupport { "|((\\d|[1-9]\\d|1\\d{2}|2[0-4][0-9]|25[0-5])\\.){3}" + "(\\d|[1-9]\\d|1\\d{2}|2[0-4][0-9]|25[0-5])" + ")(:\\d+)?" + - ")(((\\/+([a-z0-9$_\\.\\+!\\*\\'\\(\\),;:@&=-]|%[0-9a-f]{2})*)*" + + ")(((\\/{0,1}([a-z0-9$_\\.\\+!\\*\\'\\(\\),;:@&=-]|%[0-9a-f]{2})*)*" + "(\\?([a-z0-9$_\\.\\+!\\*\\'\\(\\),;:@&=-]|%[0-9a-f]{2})*)" + "?)?)?" + "(#([a-z0-9$_\\.\\+!\\*\\'\\(\\),;:@&=-]|%[0-9a-f]{2})*)?" + http://git-wip-us.apache.org/repos/asf/struts/blob/eccc31eb/xwork-core/src/test/java/com/opensymphony/xwork2/validator/URLValidatorTest.java -- diff --git a/xwork-core/src/test/java/com/opensymphony/xwork2/validator/URLValidatorTest.java b/xwork-core/src/test/java/com/opensymphony/xwork2/validator/URLValidatorTest.java index f495557..da9806a 100644 --- a/xwork-core/src/test/java/com/opensymphony/xwork2/validator/URLValidatorTest.java +++ b/xwork-core/src/test/java/com/opensymphony/xwork2/validator/URLValidatorTest.java @@ -139,6 +139,7 @@ public class URLValidatorTest extends XWorkTestCase { assertFalse(pattern.matcher("").matches()); assertFalse(pattern.matcher(" ").matches()); assertFalse(pattern.matcher("no url").matches()); + assertFalse(pattern.matcher("http://example.com??";).matches()); assertTrue(pattern.matcher("http://www.opensymphony.com";).matches()); assertTrue(pattern.matcher("https://www.opensymphony.com";).matches());
struts git commit: Improves validation RegEx
Repository: struts Updated Branches: refs/heads/master 7621c2bc9 -> a0fdca138 Improves validation RegEx Project: http://git-wip-us.apache.org/repos/asf/struts/repo Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/a0fdca13 Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/a0fdca13 Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/a0fdca13 Branch: refs/heads/master Commit: a0fdca138feec2c2e94eb75ca1f8b76678b4d152 Parents: 7621c2b Author: Lukasz Lenart Authored: Tue Jun 14 06:53:36 2016 +0200 Committer: Lukasz Lenart Committed: Tue Jun 14 07:02:09 2016 +0200 -- .../com/opensymphony/xwork2/validator/validators/URLValidator.java | 2 +- .../java/com/opensymphony/xwork2/validator/URLValidatorTest.java | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) -- http://git-wip-us.apache.org/repos/asf/struts/blob/a0fdca13/core/src/main/java/com/opensymphony/xwork2/validator/validators/URLValidator.java -- diff --git a/core/src/main/java/com/opensymphony/xwork2/validator/validators/URLValidator.java b/core/src/main/java/com/opensymphony/xwork2/validator/validators/URLValidator.java index f49d914..fd678a7 100644 --- a/core/src/main/java/com/opensymphony/xwork2/validator/validators/URLValidator.java +++ b/core/src/main/java/com/opensymphony/xwork2/validator/validators/URLValidator.java @@ -81,7 +81,7 @@ public class URLValidator extends FieldValidatorSupport { "|((\\d|[1-9]\\d|1\\d{2}|2[0-4][0-9]|25[0-5])\\.){3}" + "(\\d|[1-9]\\d|1\\d{2}|2[0-4][0-9]|25[0-5])" + ")(:\\d+)?" + - ")(((\\/+([a-z0-9$_\\.\\+!\\*\\'\\(\\),;:@&=-]|%[0-9a-f]{2})*)*" + + ")(((\\/{0,1}([a-z0-9$_\\.\\+!\\*\\'\\(\\),;:@&=-]|%[0-9a-f]{2})*)*" + "(\\?([a-z0-9$_\\.\\+!\\*\\'\\(\\),;:@&=-]|%[0-9a-f]{2})*)" + "?)?)?" + "(#([a-z0-9$_\\.\\+!\\*\\'\\(\\),;:@&=-]|%[0-9a-f]{2})*)?" + http://git-wip-us.apache.org/repos/asf/struts/blob/a0fdca13/core/src/test/java/com/opensymphony/xwork2/validator/URLValidatorTest.java -- diff --git a/core/src/test/java/com/opensymphony/xwork2/validator/URLValidatorTest.java b/core/src/test/java/com/opensymphony/xwork2/validator/URLValidatorTest.java index 2895d80..77223eb 100644 --- a/core/src/test/java/com/opensymphony/xwork2/validator/URLValidatorTest.java +++ b/core/src/test/java/com/opensymphony/xwork2/validator/URLValidatorTest.java @@ -138,6 +138,7 @@ public class URLValidatorTest extends XWorkTestCase { assertFalse(pattern.matcher("").matches()); assertFalse(pattern.matcher(" ").matches()); assertFalse(pattern.matcher("no url").matches()); + assertFalse(pattern.matcher("http://example.com??";).matches()); assertTrue(pattern.matcher("http://www.opensymphony.com";).matches()); assertTrue(pattern.matcher("https://www.opensymphony.com";).matches());
struts git commit: [maven-release-plugin] prepare release STRUTS_2_3_29
Repository: struts Updated Branches: refs/heads/support-2-3 eccc31ebc -> bb22c585b [maven-release-plugin] prepare release STRUTS_2_3_29 Project: http://git-wip-us.apache.org/repos/asf/struts/repo Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/bb22c585 Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/bb22c585 Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/bb22c585 Branch: refs/heads/support-2-3 Commit: bb22c585b5b52967fab033dba02cd244cd5b5b7a Parents: eccc31e Author: Lukasz Lenart Authored: Tue Jun 14 07:10:57 2016 +0200 Committer: Lukasz Lenart Committed: Tue Jun 14 07:10:57 2016 +0200 -- 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-angularjs/pom.xml | 2 +- archetypes/struts2-archetype-blank/pom.xml | 2 +- archetypes/struts2-archetype-convention/pom.xml | 2 +- archetypes/struts2-archetype-dbportlet/pom.xml | 2 +- archetypes/struts2-archetype-plugin/pom.xml | 2 +- archetypes/struts2-archetype-portlet/pom.xml| 2 +- archetypes/struts2-archetype-starter/pom.xml| 2 +- assembly/pom.xml| 2 +- bom/pom.xml | 6 +++--- 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/java8-support/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| 2 +- 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 | 4 ++-- xwork-core/pom.xml | 2 +- 53 files changed, 57 insertions(+), 57 deletions(-) -- http://git-wip-us.apache.org/repos/asf/struts/blob/bb22c585/apps/blank/pom.xml -- diff --git a/apps/blank/pom.xml b/apps/blank/pom.xml index fc6d5bb..bb6f3ac 100644 --- a/apps/blank/pom.xml +++ b/apps/blank/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps -2.3.29-SNAPSHOT +2.3.29 struts2-blank http://git-wip-us.apache.org/repos/asf/struts/blob/bb22c585/apps/jboss-blank/pom.xml -- diff --git a/apps/jboss-blank/pom.xml b/apps/jboss-blank/pom.xml index 755ee49..33e7115 100644 --- a/apps/jboss-blank/pom.xml +++ b/apps/jboss-blank/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps -2.3.29-SNAPSHOT +2.3.29 struts2-jboss-blank http://git-wip-us.apache.org/repos/asf/struts/blob/bb22c585/apps/mailreader/pom.xml -- diff --git a/apps/mailreader/pom.xml b/apps/mailreader/pom.xml index 779cde7..3efeee6 100644 --- a/apps/mailreader/pom.xml +++ b/apps/mailreader/pom.x
[struts] Git Push Summary
Repository: struts Updated Tags: refs/tags/STRUTS_2_3_29 [created] 32cf3321c
struts git commit: [maven-release-plugin] prepare for next development iteration
Repository: struts Updated Branches: refs/heads/support-2-3 bb22c585b -> 730441b7a [maven-release-plugin] prepare for next development iteration Project: http://git-wip-us.apache.org/repos/asf/struts/repo Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/730441b7 Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/730441b7 Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/730441b7 Branch: refs/heads/support-2-3 Commit: 730441b7a7ca6d760ed7d96e149d9765bcad7a01 Parents: bb22c58 Author: Lukasz Lenart Authored: Tue Jun 14 07:11:10 2016 +0200 Committer: Lukasz Lenart Committed: Tue Jun 14 07:11:10 2016 +0200 -- 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-angularjs/pom.xml | 2 +- archetypes/struts2-archetype-blank/pom.xml | 2 +- archetypes/struts2-archetype-convention/pom.xml | 2 +- archetypes/struts2-archetype-dbportlet/pom.xml | 2 +- archetypes/struts2-archetype-plugin/pom.xml | 2 +- archetypes/struts2-archetype-portlet/pom.xml| 2 +- archetypes/struts2-archetype-starter/pom.xml| 2 +- assembly/pom.xml| 2 +- bom/pom.xml | 6 +++--- 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/java8-support/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| 2 +- 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 | 4 ++-- xwork-core/pom.xml | 2 +- 53 files changed, 57 insertions(+), 57 deletions(-) -- http://git-wip-us.apache.org/repos/asf/struts/blob/730441b7/apps/blank/pom.xml -- diff --git a/apps/blank/pom.xml b/apps/blank/pom.xml index bb6f3ac..09d6154 100644 --- a/apps/blank/pom.xml +++ b/apps/blank/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps -2.3.29 +2.3.30-SNAPSHOT struts2-blank http://git-wip-us.apache.org/repos/asf/struts/blob/730441b7/apps/jboss-blank/pom.xml -- diff --git a/apps/jboss-blank/pom.xml b/apps/jboss-blank/pom.xml index 33e7115..3ec8438 100644 --- a/apps/jboss-blank/pom.xml +++ b/apps/jboss-blank/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps -2.3.29 +2.3.30-SNAPSHOT struts2-jboss-blank http://git-wip-us.apache.org/repos/asf/struts/blob/730441b7/apps/mailreader/pom.xml -- diff --git a/apps/mailreader/pom.xml b/apps/mailreader/pom.xml index 3efeee6..8513ab1 100644 --- a/apps/mailreader/pom.xml +++ b/apps/mailrea
[struts] Git Push Summary
Repository: struts Updated Tags: refs/tags/STRUTS_2_5_1 [created] 589d9a3a6
struts git commit: [maven-release-plugin] prepare release STRUTS_2_5_1
Repository: struts Updated Branches: refs/heads/master a0fdca138 -> e8aa825f2 [maven-release-plugin] prepare release STRUTS_2_5_1 Project: http://git-wip-us.apache.org/repos/asf/struts/repo Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/e8aa825f Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/e8aa825f Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/e8aa825f Branch: refs/heads/master Commit: e8aa825f21fc951418f0cfa770d32762a4a83664 Parents: a0fdca1 Author: Lukasz Lenart Authored: Tue Jun 14 08:07:24 2016 +0200 Committer: Lukasz Lenart Committed: Tue Jun 14 08:07:24 2016 +0200 -- 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-angularjs/pom.xml | 2 +- archetypes/struts2-archetype-blank/pom.xml | 2 +- archetypes/struts2-archetype-convention/pom.xml | 2 +- archetypes/struts2-archetype-dbportlet/pom.xml | 2 +- archetypes/struts2-archetype-plugin/pom.xml | 2 +- archetypes/struts2-archetype-portlet/pom.xml| 2 +- archetypes/struts2-archetype-starter/pom.xml| 2 +- assembly/pom.xml| 2 +- bom/pom.xml | 8 ++-- bundles/admin/pom.xml | 2 +- bundles/demo/pom.xml| 2 +- bundles/pom.xml | 2 +- core/pom.xml| 2 +- plugins/bean-validation/pom.xml | 2 +- plugins/cdi/pom.xml | 2 +- plugins/config-browser/pom.xml | 2 +- plugins/convention/pom.xml | 2 +- plugins/dwr/pom.xml | 2 +- plugins/embeddedjsp/pom.xml | 2 +- plugins/gxp/pom.xml | 2 +- plugins/jasperreports/pom.xml | 2 +- plugins/java8-support/pom.xml | 2 +- plugins/javatemplates/pom.xml | 2 +- plugins/jfreechart/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| 2 +- plugins/sitegraph/pom.xml | 2 +- plugins/sitemesh/pom.xml| 2 +- plugins/spring/pom.xml | 2 +- plugins/testng/pom.xml | 2 +- plugins/tiles/pom.xml | 2 +- pom.xml | 4 ++-- 45 files changed, 52 insertions(+), 48 deletions(-) -- http://git-wip-us.apache.org/repos/asf/struts/blob/e8aa825f/apps/pom.xml -- diff --git a/apps/pom.xml b/apps/pom.xml index ab871b0..ba7419e 100644 --- a/apps/pom.xml +++ b/apps/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent -2.5.1-SNAPSHOT +2.5.1 struts2-apps pom http://git-wip-us.apache.org/repos/asf/struts/blob/e8aa825f/apps/portlet/pom.xml -- diff --git a/apps/portlet/pom.xml b/apps/portlet/pom.xml index dbed817..acd8f89 100644 --- a/apps/portlet/pom.xml +++ b/apps/portlet/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps -2.5.1-SNAPSHOT +2.5.1 struts2-portlet http://git-wip-us.apache.org/repos/asf/struts/blob/e8aa825f/apps/rest-showcase/pom.xml -- diff --git a/apps/rest-showcase/pom.xml b/apps/rest-showcase/pom.xml index 6e7e0c0..cc6eee8 100644 --- a/apps/rest-showcase/pom.xml +++ b/apps/rest-showcase/pom.xml @@ -26,12 +26,12 @@ org.apache.struts struts2-apps -2.5.1-SNAPSHOT +2.5.1 struts2-rest-showcase war -2.5.1-SNAPSHOT +2.5.1 Struts 2 Rest Showcase Webapp Struts 2 Rest Showcase Example http://git-wip-us.apache.org/repos/asf/struts/blob/e8aa825f/apps/showcase/pom.xml -- diff --git a/apps/showcase/pom.xml b/apps/showcase/pom.xml index 53d9a93.
struts git commit: [maven-release-plugin] prepare for next development iteration
Repository: struts Updated Branches: refs/heads/master e8aa825f2 -> a2de25569 [maven-release-plugin] prepare for next development iteration Project: http://git-wip-us.apache.org/repos/asf/struts/repo Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/a2de2556 Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/a2de2556 Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/a2de2556 Branch: refs/heads/master Commit: a2de25569770fcab30f589073647272cd6fe8aa7 Parents: e8aa825 Author: Lukasz Lenart Authored: Tue Jun 14 08:07:45 2016 +0200 Committer: Lukasz Lenart Committed: Tue Jun 14 08:07:45 2016 +0200 -- 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-angularjs/pom.xml | 2 +- archetypes/struts2-archetype-blank/pom.xml | 2 +- archetypes/struts2-archetype-convention/pom.xml | 2 +- archetypes/struts2-archetype-dbportlet/pom.xml | 2 +- archetypes/struts2-archetype-plugin/pom.xml | 2 +- archetypes/struts2-archetype-portlet/pom.xml| 2 +- archetypes/struts2-archetype-starter/pom.xml| 2 +- assembly/pom.xml| 2 +- bom/pom.xml | 8 ++-- bundles/admin/pom.xml | 2 +- bundles/demo/pom.xml| 2 +- bundles/pom.xml | 2 +- core/pom.xml| 2 +- plugins/bean-validation/pom.xml | 2 +- plugins/cdi/pom.xml | 2 +- plugins/config-browser/pom.xml | 2 +- plugins/convention/pom.xml | 2 +- plugins/dwr/pom.xml | 2 +- plugins/embeddedjsp/pom.xml | 2 +- plugins/gxp/pom.xml | 2 +- plugins/jasperreports/pom.xml | 2 +- plugins/java8-support/pom.xml | 2 +- plugins/javatemplates/pom.xml | 2 +- plugins/jfreechart/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| 2 +- plugins/sitegraph/pom.xml | 2 +- plugins/sitemesh/pom.xml| 2 +- plugins/spring/pom.xml | 2 +- plugins/testng/pom.xml | 2 +- plugins/tiles/pom.xml | 2 +- pom.xml | 4 ++-- 45 files changed, 48 insertions(+), 52 deletions(-) -- http://git-wip-us.apache.org/repos/asf/struts/blob/a2de2556/apps/pom.xml -- diff --git a/apps/pom.xml b/apps/pom.xml index ba7419e..245f2b5 100644 --- a/apps/pom.xml +++ b/apps/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-parent -2.5.1 +2.5.2-SNAPSHOT struts2-apps pom http://git-wip-us.apache.org/repos/asf/struts/blob/a2de2556/apps/portlet/pom.xml -- diff --git a/apps/portlet/pom.xml b/apps/portlet/pom.xml index acd8f89..54680ac 100644 --- a/apps/portlet/pom.xml +++ b/apps/portlet/pom.xml @@ -26,7 +26,7 @@ org.apache.struts struts2-apps -2.5.1 +2.5.2-SNAPSHOT struts2-portlet http://git-wip-us.apache.org/repos/asf/struts/blob/a2de2556/apps/rest-showcase/pom.xml -- diff --git a/apps/rest-showcase/pom.xml b/apps/rest-showcase/pom.xml index cc6eee8..48b796d 100644 --- a/apps/rest-showcase/pom.xml +++ b/apps/rest-showcase/pom.xml @@ -26,12 +26,12 @@ org.apache.struts struts2-apps -2.5.1 +2.5.2-SNAPSHOT struts2-rest-showcase war -2.5.1 +2.5.2-SNAPSHOT Struts 2 Rest Showcase Webapp Struts 2 Rest Showcase Example http://git-wip-us.apache.org/repos/asf/struts/blob/a2de2556/apps/showcase/pom.xml -- diff --git a/apps/showcase/pom.xml b/apps/showcase/pom.xml inde
svn commit: r13990 - /dev/struts/2.3.29/
Author: lukaszlenart Date: Tue Jun 14 06:50:32 2016 New Revision: 13990 Log: Updates test release 2.3.29 Added: dev/struts/2.3.29/ dev/struts/2.3.29/struts-2.3.29-all.zip (with props) dev/struts/2.3.29/struts-2.3.29-all.zip.asc (with props) dev/struts/2.3.29/struts-2.3.29-all.zip.md5 dev/struts/2.3.29/struts-2.3.29-all.zip.sha1 dev/struts/2.3.29/struts-2.3.29-apps.zip (with props) dev/struts/2.3.29/struts-2.3.29-apps.zip.asc (with props) dev/struts/2.3.29/struts-2.3.29-apps.zip.md5 dev/struts/2.3.29/struts-2.3.29-apps.zip.sha1 dev/struts/2.3.29/struts-2.3.29-docs.zip (with props) dev/struts/2.3.29/struts-2.3.29-docs.zip.asc (with props) dev/struts/2.3.29/struts-2.3.29-docs.zip.md5 dev/struts/2.3.29/struts-2.3.29-docs.zip.sha1 dev/struts/2.3.29/struts-2.3.29-lib.zip (with props) dev/struts/2.3.29/struts-2.3.29-lib.zip.asc (with props) dev/struts/2.3.29/struts-2.3.29-lib.zip.md5 dev/struts/2.3.29/struts-2.3.29-lib.zip.sha1 dev/struts/2.3.29/struts-2.3.29-min-lib.zip (with props) dev/struts/2.3.29/struts-2.3.29-min-lib.zip.asc (with props) dev/struts/2.3.29/struts-2.3.29-min-lib.zip.md5 dev/struts/2.3.29/struts-2.3.29-min-lib.zip.sha1 dev/struts/2.3.29/struts-2.3.29-src.zip (with props) dev/struts/2.3.29/struts-2.3.29-src.zip.asc (with props) dev/struts/2.3.29/struts-2.3.29-src.zip.md5 dev/struts/2.3.29/struts-2.3.29-src.zip.sha1 Added: dev/struts/2.3.29/struts-2.3.29-all.zip == Binary file - no diff available. Propchange: dev/struts/2.3.29/struts-2.3.29-all.zip -- svn:mime-type = application/zip Added: dev/struts/2.3.29/struts-2.3.29-all.zip.asc == Binary file - no diff available. Propchange: dev/struts/2.3.29/struts-2.3.29-all.zip.asc -- svn:mime-type = application/pgp-signature Added: dev/struts/2.3.29/struts-2.3.29-all.zip.md5 == --- dev/struts/2.3.29/struts-2.3.29-all.zip.md5 (added) +++ dev/struts/2.3.29/struts-2.3.29-all.zip.md5 Tue Jun 14 06:50:32 2016 @@ -0,0 +1 @@ +6f7dd36a97ef027ba343232f2974b2d4 \ No newline at end of file Added: dev/struts/2.3.29/struts-2.3.29-all.zip.sha1 == --- dev/struts/2.3.29/struts-2.3.29-all.zip.sha1 (added) +++ dev/struts/2.3.29/struts-2.3.29-all.zip.sha1 Tue Jun 14 06:50:32 2016 @@ -0,0 +1 @@ +f98f36824b5af9eed0463331848b2f382ae5f004 \ No newline at end of file Added: dev/struts/2.3.29/struts-2.3.29-apps.zip == Binary file - no diff available. Propchange: dev/struts/2.3.29/struts-2.3.29-apps.zip -- svn:mime-type = application/zip Added: dev/struts/2.3.29/struts-2.3.29-apps.zip.asc == Binary file - no diff available. Propchange: dev/struts/2.3.29/struts-2.3.29-apps.zip.asc -- svn:mime-type = application/pgp-signature Added: dev/struts/2.3.29/struts-2.3.29-apps.zip.md5 == --- dev/struts/2.3.29/struts-2.3.29-apps.zip.md5 (added) +++ dev/struts/2.3.29/struts-2.3.29-apps.zip.md5 Tue Jun 14 06:50:32 2016 @@ -0,0 +1 @@ +bb2200f9deed81b8232532f4d5c2ac07 \ No newline at end of file Added: dev/struts/2.3.29/struts-2.3.29-apps.zip.sha1 == --- dev/struts/2.3.29/struts-2.3.29-apps.zip.sha1 (added) +++ dev/struts/2.3.29/struts-2.3.29-apps.zip.sha1 Tue Jun 14 06:50:32 2016 @@ -0,0 +1 @@ +dfae3b97e5c17e85c3c73707c669f7d8e926e8f5 \ No newline at end of file Added: dev/struts/2.3.29/struts-2.3.29-docs.zip == Binary file - no diff available. Propchange: dev/struts/2.3.29/struts-2.3.29-docs.zip -- svn:mime-type = application/zip Added: dev/struts/2.3.29/struts-2.3.29-docs.zip.asc == Binary file - no diff available. Propchange: dev/struts/2.3.29/struts-2.3.29-docs.zip.asc -- svn:mime-type = application/pgp-signature Added: dev/struts/2.3.29/struts-2.3.29-docs.zip.md5 =
svn commit: r13991 - /dev/struts/2.5.1/
Author: lukaszlenart Date: Tue Jun 14 06:52:30 2016 New Revision: 13991 Log: Updates test release 2.5.1 Added: dev/struts/2.5.1/ dev/struts/2.5.1/struts-2.5.1-all.zip (with props) dev/struts/2.5.1/struts-2.5.1-all.zip.asc (with props) dev/struts/2.5.1/struts-2.5.1-all.zip.md5 dev/struts/2.5.1/struts-2.5.1-all.zip.sha1 dev/struts/2.5.1/struts-2.5.1-apps.zip (with props) dev/struts/2.5.1/struts-2.5.1-apps.zip.asc (with props) dev/struts/2.5.1/struts-2.5.1-apps.zip.md5 dev/struts/2.5.1/struts-2.5.1-apps.zip.sha1 dev/struts/2.5.1/struts-2.5.1-docs.zip (with props) dev/struts/2.5.1/struts-2.5.1-docs.zip.asc (with props) dev/struts/2.5.1/struts-2.5.1-docs.zip.md5 dev/struts/2.5.1/struts-2.5.1-docs.zip.sha1 dev/struts/2.5.1/struts-2.5.1-lib.zip (with props) dev/struts/2.5.1/struts-2.5.1-lib.zip.asc (with props) dev/struts/2.5.1/struts-2.5.1-lib.zip.md5 dev/struts/2.5.1/struts-2.5.1-lib.zip.sha1 dev/struts/2.5.1/struts-2.5.1-min-lib.zip (with props) dev/struts/2.5.1/struts-2.5.1-min-lib.zip.asc (with props) dev/struts/2.5.1/struts-2.5.1-min-lib.zip.md5 dev/struts/2.5.1/struts-2.5.1-min-lib.zip.sha1 dev/struts/2.5.1/struts-2.5.1-src.zip (with props) dev/struts/2.5.1/struts-2.5.1-src.zip.asc (with props) dev/struts/2.5.1/struts-2.5.1-src.zip.md5 dev/struts/2.5.1/struts-2.5.1-src.zip.sha1 Added: dev/struts/2.5.1/struts-2.5.1-all.zip == Binary file - no diff available. Propchange: dev/struts/2.5.1/struts-2.5.1-all.zip -- svn:mime-type = application/zip Added: dev/struts/2.5.1/struts-2.5.1-all.zip.asc == Binary file - no diff available. Propchange: dev/struts/2.5.1/struts-2.5.1-all.zip.asc -- svn:mime-type = application/pgp-signature Added: dev/struts/2.5.1/struts-2.5.1-all.zip.md5 == --- dev/struts/2.5.1/struts-2.5.1-all.zip.md5 (added) +++ dev/struts/2.5.1/struts-2.5.1-all.zip.md5 Tue Jun 14 06:52:30 2016 @@ -0,0 +1 @@ +1c8cf12a19f740a5b264cc959eb0eba9 \ No newline at end of file Added: dev/struts/2.5.1/struts-2.5.1-all.zip.sha1 == --- dev/struts/2.5.1/struts-2.5.1-all.zip.sha1 (added) +++ dev/struts/2.5.1/struts-2.5.1-all.zip.sha1 Tue Jun 14 06:52:30 2016 @@ -0,0 +1 @@ +9fbec22ec9e1c9ae59498c9e6e1b2cf04937f0f0 \ No newline at end of file Added: dev/struts/2.5.1/struts-2.5.1-apps.zip == Binary file - no diff available. Propchange: dev/struts/2.5.1/struts-2.5.1-apps.zip -- svn:mime-type = application/zip Added: dev/struts/2.5.1/struts-2.5.1-apps.zip.asc == Binary file - no diff available. Propchange: dev/struts/2.5.1/struts-2.5.1-apps.zip.asc -- svn:mime-type = application/pgp-signature Added: dev/struts/2.5.1/struts-2.5.1-apps.zip.md5 == --- dev/struts/2.5.1/struts-2.5.1-apps.zip.md5 (added) +++ dev/struts/2.5.1/struts-2.5.1-apps.zip.md5 Tue Jun 14 06:52:30 2016 @@ -0,0 +1 @@ +7962472bab9004834ed64d08d83c3588 \ No newline at end of file Added: dev/struts/2.5.1/struts-2.5.1-apps.zip.sha1 == --- dev/struts/2.5.1/struts-2.5.1-apps.zip.sha1 (added) +++ dev/struts/2.5.1/struts-2.5.1-apps.zip.sha1 Tue Jun 14 06:52:30 2016 @@ -0,0 +1 @@ +8622cb51d7f21d723a0c37f5444cf724b0d71702 \ No newline at end of file Added: dev/struts/2.5.1/struts-2.5.1-docs.zip == Binary file - no diff available. Propchange: dev/struts/2.5.1/struts-2.5.1-docs.zip -- svn:mime-type = application/zip Added: dev/struts/2.5.1/struts-2.5.1-docs.zip.asc == Binary file - no diff available. Propchange: dev/struts/2.5.1/struts-2.5.1-docs.zip.asc -- svn:mime-type = application/pgp-signature Added: dev/struts/2.5.1/struts-2.5.1-docs.zip.md5 == --- dev/struts/2.5.1/struts-2.5.1-docs.zip.md5 (added) +++ dev/struts/2.5.1/struts-2.5.1-d