[mina] branch 2.1.X updated: o Ignoring a test that fails randomly (I suspect the test is wrong) o Some code refactoring
This is an automated email from the ASF dual-hosted git repository. elecharny pushed a commit to branch 2.1.X in repository https://gitbox.apache.org/repos/asf/mina.git The following commit(s) were added to refs/heads/2.1.X by this push: new 3be18a7 o Ignoring a test that fails randomly (I suspect the test is wrong) o Some code refactoring 3be18a7 is described below commit 3be18a7e140a6eff48e32faf9f39383beb5f040d Author: emmanuel lecharny AuthorDate: Wed May 29 11:43:46 2019 +0200 o Ignoring a test that fails randomly (I suspect the test is wrong) o Some code refactoring --- .../mina/core/filterchain/IoFilterEvent.java | 1 + .../mina/filter/executor/ExecutorFilter.java | 112 + .../executor/PriorityThreadPoolExecutorTest.java | 14 ++- 3 files changed, 56 insertions(+), 71 deletions(-) diff --git a/mina-core/src/main/java/org/apache/mina/core/filterchain/IoFilterEvent.java b/mina-core/src/main/java/org/apache/mina/core/filterchain/IoFilterEvent.java index 52b0878..99901dc 100644 --- a/mina-core/src/main/java/org/apache/mina/core/filterchain/IoFilterEvent.java +++ b/mina-core/src/main/java/org/apache/mina/core/filterchain/IoFilterEvent.java @@ -43,6 +43,7 @@ public class IoFilterEvent extends IoEvent { /** A speedup for logs */ private static final boolean DEBUG = LOGGER.isDebugEnabled(); +/** The filter to call next */ private final NextFilter nextFilter; /** diff --git a/mina-core/src/main/java/org/apache/mina/filter/executor/ExecutorFilter.java b/mina-core/src/main/java/org/apache/mina/filter/executor/ExecutorFilter.java index 178fd8d..273d805 100644 --- a/mina-core/src/main/java/org/apache/mina/filter/executor/ExecutorFilter.java +++ b/mina-core/src/main/java/org/apache/mina/filter/executor/ExecutorFilter.java @@ -138,9 +138,13 @@ public class ExecutorFilter extends IoFilterAdapter { private static final boolean NOT_MANAGEABLE_EXECUTOR = false; /** A list of default EventTypes to be handled by the executor */ -private static final IoEventType[] DEFAULT_EVENT_SET = new IoEventType[] { IoEventType.EXCEPTION_CAUGHT, -IoEventType.MESSAGE_RECEIVED, IoEventType.MESSAGE_SENT, IoEventType.SESSION_CLOSED, -IoEventType.SESSION_IDLE, IoEventType.SESSION_OPENED }; +private static final IoEventType[] DEFAULT_EVENT_SET = new IoEventType[] { +IoEventType.EXCEPTION_CAUGHT, +IoEventType.MESSAGE_RECEIVED, +IoEventType.MESSAGE_SENT, +IoEventType.SESSION_CLOSED, +IoEventType.SESSION_IDLE, +IoEventType.SESSION_OPENED }; /** * (Convenience constructor) Creates a new instance with a new @@ -150,10 +154,10 @@ public class ExecutorFilter extends IoFilterAdapter { */ public ExecutorFilter() { // Create a new default Executor -Executor newExecutor = createDefaultExecutor(BASE_THREAD_NUMBER, DEFAULT_MAX_POOL_SIZE, DEFAULT_KEEPALIVE_TIME, -TimeUnit.SECONDS, Executors.defaultThreadFactory(), null); +Executor newExecutor = new OrderedThreadPoolExecutor(BASE_THREAD_NUMBER, DEFAULT_MAX_POOL_SIZE, +DEFAULT_KEEPALIVE_TIME, TimeUnit.SECONDS, Executors.defaultThreadFactory(), null); -// Initialize the filter +// Initialise the filter init(newExecutor, MANAGEABLE_EXECUTOR); } @@ -167,10 +171,10 @@ public class ExecutorFilter extends IoFilterAdapter { */ public ExecutorFilter(int maximumPoolSize) { // Create a new default Executor -Executor newExecutor = createDefaultExecutor(BASE_THREAD_NUMBER, maximumPoolSize, DEFAULT_KEEPALIVE_TIME, -TimeUnit.SECONDS, Executors.defaultThreadFactory(), null); +Executor newExecutor = new OrderedThreadPoolExecutor(BASE_THREAD_NUMBER, maximumPoolSize, +DEFAULT_KEEPALIVE_TIME, TimeUnit.SECONDS, Executors.defaultThreadFactory(), null); -// Initialize the filter +// Initialise the filter init(newExecutor, MANAGEABLE_EXECUTOR); } @@ -185,10 +189,10 @@ public class ExecutorFilter extends IoFilterAdapter { */ public ExecutorFilter(int corePoolSize, int maximumPoolSize) { // Create a new default Executor -Executor newExecutor = createDefaultExecutor(corePoolSize, maximumPoolSize, DEFAULT_KEEPALIVE_TIME, -TimeUnit.SECONDS, Executors.defaultThreadFactory(), null); +Executor newExecutor = new OrderedThreadPoolExecutor(corePoolSize, maximumPoolSize, +DEFAULT_KEEPALIVE_TIME, TimeUnit.SECONDS, Executors.defaultThreadFactory(), null); -// Initialize the filter +// Initialise the filter init(newExecutor, MANAGEABLE_EXECUTOR); } @@ -203,10 +207,10 @@ public class ExecutorFilter extends IoFilterAdapter { */ public ExecutorFilter(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit) {
[mina] branch 2.1.X updated: Reverted some changes (https -> http)
This is an automated email from the ASF dual-hosted git repository. elecharny pushed a commit to branch 2.1.X in repository https://gitbox.apache.org/repos/asf/mina.git The following commit(s) were added to refs/heads/2.1.X by this push: new 2047d60 Reverted some changes (https -> http) 2047d60 is described below commit 2047d60479fc18e32105a786044ccaafe5090788 Author: emmanuel lecharny AuthorDate: Wed May 29 12:02:39 2019 +0200 Reverted some changes (https -> http) --- distribution/pom.xml| 2 +- mina-benchmarks/pom.xml | 2 +- mina-core/pom.xml | 2 +- mina-example/pom.xml| 2 +- mina-filter-compression/pom.xml | 2 +- mina-http/pom.xml | 2 +- mina-integration-beans/pom.xml | 2 +- mina-integration-jmx/pom.xml| 2 +- mina-integration-ognl/pom.xml | 2 +- mina-integration-xbean/pom.xml | 5 ++--- mina-legal/pom.xml | 2 +- mina-statemachine/pom.xml | 2 +- mina-transport-apr/pom.xml | 2 +- mina-transport-serial/pom.xml | 2 +- pom.xml | 2 +- 15 files changed, 16 insertions(+), 17 deletions(-) diff --git a/distribution/pom.xml b/distribution/pom.xml index 0f62a42..ee02e3b 100644 --- a/distribution/pom.xml +++ b/distribution/pom.xml @@ -18,7 +18,7 @@ under the License. --> -https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd";> +https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> 4.0.0 diff --git a/mina-benchmarks/pom.xml b/mina-benchmarks/pom.xml index 3de4433..e05cdc7 100755 --- a/mina-benchmarks/pom.xml +++ b/mina-benchmarks/pom.xml @@ -19,7 +19,7 @@ under the License. --> -https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd";> +https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> 4.0.0 org.apache.mina diff --git a/mina-core/pom.xml b/mina-core/pom.xml index 7f7cb25..f032fd7 100644 --- a/mina-core/pom.xml +++ b/mina-core/pom.xml @@ -19,7 +19,7 @@ under the License. --> -https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd";> +https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> 4.0.0 org.apache.mina diff --git a/mina-example/pom.xml b/mina-example/pom.xml index d564e2c..045d571 100644 --- a/mina-example/pom.xml +++ b/mina-example/pom.xml @@ -16,7 +16,7 @@ specific language governing permissions and limitations under the License. --> -https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 httpq://maven.apache.org/maven-v4_0_0.xsd"> +https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> 4.0.0 org.apache.mina diff --git a/mina-filter-compression/pom.xml b/mina-filter-compression/pom.xml index be249a7..da28746 100644 --- a/mina-filter-compression/pom.xml +++ b/mina-filter-compression/pom.xml @@ -19,7 +19,7 @@ under the License. --> -https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd";> +https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> 4.0.0 org.apache.mina diff --git a/mina-http/pom.xml b/mina-http/pom.xml index 0c3d21b..1be68b1 100644 --- a/mina-http/pom.xml +++ b/mina-http/pom.xml @@ -19,7 +19,7 @@ under the License. --> -https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd";> +https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> 4.0.0 org.apache.mina diff --git a/mina-integration-beans/pom.xml b/mina-integration-beans/pom.xml index 9ee2e7e..c1c6ad
[mina] branch 2.1.X updated: Some more https->http changes
This is an automated email from the ASF dual-hosted git repository. elecharny pushed a commit to branch 2.1.X in repository https://gitbox.apache.org/repos/asf/mina.git The following commit(s) were added to refs/heads/2.1.X by this push: new 39c0d72 Some more https->http changes 39c0d72 is described below commit 39c0d727c927d236227811eabd97d1fc2d34f1ed Author: emmanuel lecharny AuthorDate: Wed May 29 12:05:41 2019 +0200 Some more https->http changes --- mina-benchmarks/pom.xml | 2 +- mina-core/pom.xml | 2 +- mina-example/pom.xml| 2 +- mina-filter-compression/pom.xml | 2 +- mina-http/pom.xml | 2 +- mina-integration-beans/pom.xml | 2 +- mina-integration-jmx/pom.xml| 2 +- mina-integration-ognl/pom.xml | 2 +- mina-integration-xbean/pom.xml | 2 +- mina-legal/pom.xml | 2 +- mina-statemachine/pom.xml | 2 +- mina-transport-apr/pom.xml | 2 +- mina-transport-serial/pom.xml | 2 +- pom.xml | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/mina-benchmarks/pom.xml b/mina-benchmarks/pom.xml index e05cdc7..c202d79 100755 --- a/mina-benchmarks/pom.xml +++ b/mina-benchmarks/pom.xml @@ -19,7 +19,7 @@ under the License. --> -https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> +http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> 4.0.0 org.apache.mina diff --git a/mina-core/pom.xml b/mina-core/pom.xml index f032fd7..a714526 100644 --- a/mina-core/pom.xml +++ b/mina-core/pom.xml @@ -19,7 +19,7 @@ under the License. --> -https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> +http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> 4.0.0 org.apache.mina diff --git a/mina-example/pom.xml b/mina-example/pom.xml index 045d571..802f559 100644 --- a/mina-example/pom.xml +++ b/mina-example/pom.xml @@ -16,7 +16,7 @@ specific language governing permissions and limitations under the License. --> -https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> +http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> 4.0.0 org.apache.mina diff --git a/mina-filter-compression/pom.xml b/mina-filter-compression/pom.xml index da28746..8aac340 100644 --- a/mina-filter-compression/pom.xml +++ b/mina-filter-compression/pom.xml @@ -19,7 +19,7 @@ under the License. --> -https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> +http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> 4.0.0 org.apache.mina diff --git a/mina-http/pom.xml b/mina-http/pom.xml index 1be68b1..421772e 100644 --- a/mina-http/pom.xml +++ b/mina-http/pom.xml @@ -19,7 +19,7 @@ under the License. --> -https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> +http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> 4.0.0 org.apache.mina diff --git a/mina-integration-beans/pom.xml b/mina-integration-beans/pom.xml index c1c6ad4..a50c605 100644 --- a/mina-integration-beans/pom.xml +++ b/mina-integration-beans/pom.xml @@ -19,7 +19,7 @@ under the License. --> -https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> +http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> 4.0.0 org.apache.mina diff --git a/mina-integration-jmx/pom.xml b/mina-integration-jmx/pom.xml index f727793..4ee5f3e 100644 --- a/mina-integration-jm
[mina] branch 2.1.X updated: One more https -> http change
This is an automated email from the ASF dual-hosted git repository. elecharny pushed a commit to branch 2.1.X in repository https://gitbox.apache.org/repos/asf/mina.git The following commit(s) were added to refs/heads/2.1.X by this push: new 96ac66d One more https -> http change 96ac66d is described below commit 96ac66d9c61d478456c91ba3d4db7ceb67729469 Author: emmanuel lecharny AuthorDate: Wed May 29 12:08:50 2019 +0200 One more https -> http change --- distribution/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distribution/pom.xml b/distribution/pom.xml index ee02e3b..e005d2d 100644 --- a/distribution/pom.xml +++ b/distribution/pom.xml @@ -18,7 +18,7 @@ under the License. --> -https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> +http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";> 4.0.0
[mina] annotated tag 2.1.3 created (now b7fbad3)
This is an automated email from the ASF dual-hosted git repository. elecharny pushed a change to annotated tag 2.1.3 in repository https://gitbox.apache.org/repos/asf/mina.git. at b7fbad3 (tag) tagging a63e61a6a6b1cc40d3fbe8fce67dabba38770b80 (commit) replaces 2.1.2 by emmanuel lecharny on Wed May 29 12:12:13 2019 +0200 - Log - [maven-release-plugin] copy for tag 2.1.3 --- No new revisions were added by this update.
[mina] branch 2.1.X updated: [maven-release-plugin] prepare for next development iteration
This is an automated email from the ASF dual-hosted git repository. elecharny pushed a commit to branch 2.1.X in repository https://gitbox.apache.org/repos/asf/mina.git The following commit(s) were added to refs/heads/2.1.X by this push: new 6c01598 [maven-release-plugin] prepare for next development iteration 6c01598 is described below commit 6c015988790ee116d9801aaad000ebcc79641c19 Author: emmanuel lecharny AuthorDate: Wed May 29 12:12:17 2019 +0200 [maven-release-plugin] prepare for next development iteration --- distribution/pom.xml| 2 +- mina-core/pom.xml | 2 +- mina-example/pom.xml| 2 +- mina-filter-compression/pom.xml | 2 +- mina-http/pom.xml | 2 +- mina-integration-beans/pom.xml | 2 +- mina-integration-jmx/pom.xml| 2 +- mina-integration-ognl/pom.xml | 2 +- mina-integration-xbean/pom.xml | 2 +- mina-legal/pom.xml | 2 +- mina-statemachine/pom.xml | 2 +- mina-transport-apr/pom.xml | 2 +- mina-transport-serial/pom.xml | 2 +- pom.xml | 4 ++-- 14 files changed, 15 insertions(+), 15 deletions(-) diff --git a/distribution/pom.xml b/distribution/pom.xml index 1301ddc..c51fdc1 100644 --- a/distribution/pom.xml +++ b/distribution/pom.xml @@ -24,7 +24,7 @@ mina-parent org.apache.mina -2.1.3 +2.1.4-SNAPSHOT distribution diff --git a/mina-core/pom.xml b/mina-core/pom.xml index a076758..6cf37de 100644 --- a/mina-core/pom.xml +++ b/mina-core/pom.xml @@ -24,7 +24,7 @@ org.apache.mina mina-parent -2.1.3 +2.1.4-SNAPSHOT mina-core diff --git a/mina-example/pom.xml b/mina-example/pom.xml index c7bb675..812560b 100644 --- a/mina-example/pom.xml +++ b/mina-example/pom.xml @@ -21,7 +21,7 @@ org.apache.mina mina-parent -2.1.3 +2.1.4-SNAPSHOT mina-example diff --git a/mina-filter-compression/pom.xml b/mina-filter-compression/pom.xml index 117561d..7979560 100644 --- a/mina-filter-compression/pom.xml +++ b/mina-filter-compression/pom.xml @@ -24,7 +24,7 @@ org.apache.mina mina-parent -2.1.3 +2.1.4-SNAPSHOT mina-filter-compression diff --git a/mina-http/pom.xml b/mina-http/pom.xml index dd17be8..636c35a 100644 --- a/mina-http/pom.xml +++ b/mina-http/pom.xml @@ -24,7 +24,7 @@ org.apache.mina mina-parent -2.1.3 +2.1.4-SNAPSHOT mina-http diff --git a/mina-integration-beans/pom.xml b/mina-integration-beans/pom.xml index 97c68fc..cb52423 100644 --- a/mina-integration-beans/pom.xml +++ b/mina-integration-beans/pom.xml @@ -24,7 +24,7 @@ org.apache.mina mina-parent -2.1.3 +2.1.4-SNAPSHOT mina-integration-beans diff --git a/mina-integration-jmx/pom.xml b/mina-integration-jmx/pom.xml index 74ff4b9..cd192c1 100644 --- a/mina-integration-jmx/pom.xml +++ b/mina-integration-jmx/pom.xml @@ -24,7 +24,7 @@ org.apache.mina mina-parent -2.1.3 +2.1.4-SNAPSHOT mina-integration-jmx diff --git a/mina-integration-ognl/pom.xml b/mina-integration-ognl/pom.xml index ca2620f..dd2cb96 100644 --- a/mina-integration-ognl/pom.xml +++ b/mina-integration-ognl/pom.xml @@ -24,7 +24,7 @@ org.apache.mina mina-parent -2.1.3 +2.1.4-SNAPSHOT mina-integration-ognl diff --git a/mina-integration-xbean/pom.xml b/mina-integration-xbean/pom.xml index 1130cfe..d1905b2 100644 --- a/mina-integration-xbean/pom.xml +++ b/mina-integration-xbean/pom.xml @@ -24,7 +24,7 @@ org.apache.mina mina-parent -2.1.3 +2.1.4-SNAPSHOT mina-integration-xbean diff --git a/mina-legal/pom.xml b/mina-legal/pom.xml index 0bc97f3..1f890eb 100644 --- a/mina-legal/pom.xml +++ b/mina-legal/pom.xml @@ -21,7 +21,7 @@ org.apache.mina mina-parent -2.1.3 +2.1.4-SNAPSHOT mina-legal diff --git a/mina-statemachine/pom.xml b/mina-statemachine/pom.xml index 78bc1da..eba084c 100644 --- a/mina-statemachine/pom.xml +++ b/mina-statemachine/pom.xml @@ -24,7 +24,7 @@ org.apache.mina mina-parent -2.1.3 +2.1.4-SNAPSHOT mina-statemachine diff --git a/mina-transport-apr/pom.xml b/mina-transport-apr/pom.xml index d8ef465..f4be13a 100644 --- a/mina-transport-apr/pom.xml +++ b/mina-transport-apr/pom.xml @@ -22,7 +22,7 @@ org.apache.mina mina-parent -2.1.3 +2.1.4-SNAPSHOT mina-transport-apr diff --git a/mina-transport-serial/pom.xml b/mina-transport-serial/pom.xml index 6362a14..585eab3 100644 --- a/mina-transport-serial/pom.xml +++ b/mina-transport-serial/pom.xml @@ -24,7 +24,7 @@ org.apache.mina mina-parent -2.1.3 +2.1.4-SNAPSHOT mina-transport-serial diff --git a/pom.xml b/pom.xml index dc8c2d6..ee464a6 100644 --- a/pom.xml +++ b/pom.xml @@ -38,7 +38,7 @@ org.apache.mina - 2.1.3 + 2.1.4-SNAPSHOT mina-parent Apache MINA pom @@ -55,7 +55,7 @@ s
[mina] branch 2.1.X updated: [maven-release-plugin] prepare release 2.1.3
This is an automated email from the ASF dual-hosted git repository. elecharny pushed a commit to branch 2.1.X in repository https://gitbox.apache.org/repos/asf/mina.git The following commit(s) were added to refs/heads/2.1.X by this push: new a63e61a [maven-release-plugin] prepare release 2.1.3 a63e61a is described below commit a63e61a6a6b1cc40d3fbe8fce67dabba38770b80 Author: emmanuel lecharny AuthorDate: Wed May 29 12:11:58 2019 +0200 [maven-release-plugin] prepare release 2.1.3 --- distribution/pom.xml| 2 +- mina-core/pom.xml | 2 +- mina-example/pom.xml| 2 +- mina-filter-compression/pom.xml | 2 +- mina-http/pom.xml | 2 +- mina-integration-beans/pom.xml | 2 +- mina-integration-jmx/pom.xml| 2 +- mina-integration-ognl/pom.xml | 2 +- mina-integration-xbean/pom.xml | 2 +- mina-legal/pom.xml | 2 +- mina-statemachine/pom.xml | 2 +- mina-transport-apr/pom.xml | 2 +- mina-transport-serial/pom.xml | 2 +- pom.xml | 4 ++-- 14 files changed, 15 insertions(+), 15 deletions(-) diff --git a/distribution/pom.xml b/distribution/pom.xml index e005d2d..1301ddc 100644 --- a/distribution/pom.xml +++ b/distribution/pom.xml @@ -24,7 +24,7 @@ mina-parent org.apache.mina -2.1.3-SNAPSHOT +2.1.3 distribution diff --git a/mina-core/pom.xml b/mina-core/pom.xml index a714526..a076758 100644 --- a/mina-core/pom.xml +++ b/mina-core/pom.xml @@ -24,7 +24,7 @@ org.apache.mina mina-parent -2.1.3-SNAPSHOT +2.1.3 mina-core diff --git a/mina-example/pom.xml b/mina-example/pom.xml index 802f559..c7bb675 100644 --- a/mina-example/pom.xml +++ b/mina-example/pom.xml @@ -21,7 +21,7 @@ org.apache.mina mina-parent -2.1.3-SNAPSHOT +2.1.3 mina-example diff --git a/mina-filter-compression/pom.xml b/mina-filter-compression/pom.xml index 8aac340..117561d 100644 --- a/mina-filter-compression/pom.xml +++ b/mina-filter-compression/pom.xml @@ -24,7 +24,7 @@ org.apache.mina mina-parent -2.1.3-SNAPSHOT +2.1.3 mina-filter-compression diff --git a/mina-http/pom.xml b/mina-http/pom.xml index 421772e..dd17be8 100644 --- a/mina-http/pom.xml +++ b/mina-http/pom.xml @@ -24,7 +24,7 @@ org.apache.mina mina-parent -2.1.3-SNAPSHOT +2.1.3 mina-http diff --git a/mina-integration-beans/pom.xml b/mina-integration-beans/pom.xml index a50c605..97c68fc 100644 --- a/mina-integration-beans/pom.xml +++ b/mina-integration-beans/pom.xml @@ -24,7 +24,7 @@ org.apache.mina mina-parent -2.1.3-SNAPSHOT +2.1.3 mina-integration-beans diff --git a/mina-integration-jmx/pom.xml b/mina-integration-jmx/pom.xml index 4ee5f3e..74ff4b9 100644 --- a/mina-integration-jmx/pom.xml +++ b/mina-integration-jmx/pom.xml @@ -24,7 +24,7 @@ org.apache.mina mina-parent -2.1.3-SNAPSHOT +2.1.3 mina-integration-jmx diff --git a/mina-integration-ognl/pom.xml b/mina-integration-ognl/pom.xml index 882596a..ca2620f 100644 --- a/mina-integration-ognl/pom.xml +++ b/mina-integration-ognl/pom.xml @@ -24,7 +24,7 @@ org.apache.mina mina-parent -2.1.3-SNAPSHOT +2.1.3 mina-integration-ognl diff --git a/mina-integration-xbean/pom.xml b/mina-integration-xbean/pom.xml index 49d1bae..1130cfe 100644 --- a/mina-integration-xbean/pom.xml +++ b/mina-integration-xbean/pom.xml @@ -24,7 +24,7 @@ org.apache.mina mina-parent -2.1.3-SNAPSHOT +2.1.3 mina-integration-xbean diff --git a/mina-legal/pom.xml b/mina-legal/pom.xml index 017e377..0bc97f3 100644 --- a/mina-legal/pom.xml +++ b/mina-legal/pom.xml @@ -21,7 +21,7 @@ org.apache.mina mina-parent -2.1.3-SNAPSHOT +2.1.3 mina-legal diff --git a/mina-statemachine/pom.xml b/mina-statemachine/pom.xml index be48f47..78bc1da 100644 --- a/mina-statemachine/pom.xml +++ b/mina-statemachine/pom.xml @@ -24,7 +24,7 @@ org.apache.mina mina-parent -2.1.3-SNAPSHOT +2.1.3 mina-statemachine diff --git a/mina-transport-apr/pom.xml b/mina-transport-apr/pom.xml index 086d71d..d8ef465 100644 --- a/mina-transport-apr/pom.xml +++ b/mina-transport-apr/pom.xml @@ -22,7 +22,7 @@ org.apache.mina mina-parent -2.1.3-SNAPSHOT +2.1.3 mina-transport-apr diff --git a/mina-transport-serial/pom.xml b/mina-transport-serial/pom.xml index f9e247f..6362a14 100644 --- a/mina-transport-serial/pom.xml +++ b/mina-transport-serial/pom.xml @@ -24,7 +24,7 @@ org.apache.mina mina-parent -2.1.3-SNAPSHOT +2.1.3 mina-transport-serial diff --git a/pom.xml b/pom.xml index ddb1725..dc8c2d6 100644 --- a/pom.xml +++ b/pom.xml @@ -38,7 +38,7 @@ org.apache.mina - 2.1.3-SNAPSHOT + 2.1.3 mina-parent Apache MINA pom @@ -55,7 +55,7 @@ scm:git:https://gitbox.apache.org/r
svn commit: r34309 - /dev/mina/mina/2.1.3/
Author: elecharny Date: Wed May 29 11:34:49 2019 New Revision: 34309 Log: Apache MINA 2.1.3 packages Added: dev/mina/mina/2.1.3/ dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.bz2 (with props) dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.bz2.asc dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.bz2.sha256 dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.bz2.sha512 dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.gz (with props) dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.gz.asc dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.gz.sha256 dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.gz.sha512 dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.zip (with props) dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.zip.asc dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.zip.sha256 dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.zip.sha512 dev/mina/mina/2.1.3/apache-mina-2.1.3-src.tar.bz2 (with props) dev/mina/mina/2.1.3/apache-mina-2.1.3-src.tar.bz2.asc dev/mina/mina/2.1.3/apache-mina-2.1.3-src.tar.bz2.sha256 dev/mina/mina/2.1.3/apache-mina-2.1.3-src.tar.bz2.sha512 dev/mina/mina/2.1.3/apache-mina-2.1.3-src.tar.gz (with props) dev/mina/mina/2.1.3/apache-mina-2.1.3-src.tar.gz.asc dev/mina/mina/2.1.3/apache-mina-2.1.3-src.tar.gz.sha256 dev/mina/mina/2.1.3/apache-mina-2.1.3-src.tar.gz.sha512 dev/mina/mina/2.1.3/apache-mina-2.1.3-src.zip (with props) dev/mina/mina/2.1.3/apache-mina-2.1.3-src.zip.asc dev/mina/mina/2.1.3/apache-mina-2.1.3-src.zip.sha256 dev/mina/mina/2.1.3/apache-mina-2.1.3-src.zip.sha512 Added: dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.bz2 == Binary file - no diff available. Propchange: dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.bz2 -- svn:mime-type = application/octet-stream Added: dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.bz2.asc == --- dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.bz2.asc (added) +++ dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.bz2.asc Wed May 29 11:34:49 2019 @@ -0,0 +1,16 @@ +-BEGIN PGP SIGNATURE- + +iQIzBAABCgAdFiEETS2ykWFJuqnQyS83MUdOXnxrcDQFAlzubPoACgkQMUdOXnxr +cDRy8w//SF2JIMkuR4ATz6aRLD1Xt7dSthqqRXuxXZKKQSQHVc4bBrucnnhAvoEj +tmHWxtxm/hOltQk1YpSo9PwrBuM0/tyMRozJ73T6wdMaImGdEF13SXkJqhNO1waW +Cn2bYwswNCPtQjUrDBjRn+n8PJjE1mBbPTe1jte/5MT7+OfjmcMeB7I9u+Dtv3e+ +ezFNokEvpbvLtQ6en+zxQ6IFwmQGU5vbImINTf4+aui98UWjnpLgFGUg5dYhNhnM +7gjcxmGhnDxtc9QCR8smaMe+eckwqkOZO2GAh39llXMzlOLQsSEZYRK3U5KV++Yv +VMQM2RVwIDa+86l+WwtY+ArPjHiwTUDmFXwMC3fwWtL4SeObqs75o6HdcyGdK7Mb +DggncWEsZxxR6LS4G3EagtnlfNWILh+QxRFYaJQisGMMnytcf9r81nDlwvYXSTI5 +mjEK5a7IcG39IChTuI1RY7IAvDam1tVrbEhXTYskz4hAXO8wh+UEd7zeUum/DYH5 +iwOQIxC1EeQIh+ZxIQ6AL46wxzM0jXGbmqoUyZbWOwnzmBnGVVUU9KbwJ6F6wH5o +n602P1fABKQHA1fafKxZXn+GY8ImyymitDRyn/rNe/12L3R1FYD95YFEhXhkJKRh +r9DtVH6lgBtkqesF6mabsk11PGOBtSs53UmYZ76UIKfT6elSGxU= +=V2p6 +-END PGP SIGNATURE- Added: dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.bz2.sha256 == --- dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.bz2.sha256 (added) +++ dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.bz2.sha256 Wed May 29 11:34:49 2019 @@ -0,0 +1,2 @@ +./apache-mina-2.1.3-bin.tar.bz2: 81769423 13CD91E5 51034A5E DBBE6519 8726833C + 902F15C2 C75637ED 363FC799 Added: dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.bz2.sha512 == --- dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.bz2.sha512 (added) +++ dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.bz2.sha512 Wed May 29 11:34:49 2019 @@ -0,0 +1,4 @@ +./apache-mina-2.1.3-bin.tar.bz2: AAA5DD33 B2419EE8 59D2FB95 F8DB57AE D4EBC99F + C6F4D77A C57300F1 3CC95523 8798D8FB 13798BD6 + 55561588 996311BB E060EDFE 2CF80F99 A7174A40 + DA88B8C9 Added: dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.gz == Binary file - no diff available. Propchange: dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.gz -- svn:mime-type = application/octet-stream Added: dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.gz.asc == --- dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.gz.asc (added) +++ dev/mina/mina/2.1.3/apache-mina-2.1.3-bin.tar.gz.asc Wed May 29 11:34:49 2019 @@ -0,0 +1,16 @@ +-BEGIN PGP SIGNATURE- + +iQIzBAABCgAdFiEETS2ykWFJuqnQyS83MUdOXnxrcDQFAlzubPoACgkQMUdOXnxr +cDSADw/9Fz3RDL1TLCORBvtwYuvbuuqL3Zcekkcx1ruuzKrelCUgELoFpjIoCzYj +B/CzgiTpf28zN3qaxY
[mina-ftpserver] branch master updated: Switched from https to http; Updated the scm part
This is an automated email from the ASF dual-hosted git repository. elecharny pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mina-ftpserver.git The following commit(s) were added to refs/heads/master by this push: new c35639f Switched from https to http; Updated the scm part c35639f is described below commit c35639f283e1f23a7b299b74f75be50f7ad109e8 Author: emmanuel lecharny AuthorDate: Wed May 29 14:56:21 2019 +0200 Switched from https to http; Updated the scm part --- pom.xml | 31 --- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/pom.xml b/pom.xml index 314bf0a..a217dbb 100644 --- a/pom.xml +++ b/pom.xml @@ -29,17 +29,17 @@ pom Apache FtpServer Parent 1.1.2-SNAPSHOT - http://mina.apache.org/ftpserver + https://mina.apache.org/ftpserver Jira - http://issues.apache.org/jira/browse/FTPSERVER + https://issues.apache.org/jira/browse/FTPSERVER 2003 Apache 2.0 License - http://www.apache.org/licenses/LICENSE-2.0 + https://www.apache.org/licenses/LICENSE-2.0 repo @@ -51,14 +51,14 @@ ftpserver-users-subscr...@mina.apache.org ftpserver-users-unsubscr...@mina.apache.org ftpserver-us...@mina.apache.org - http://mail-archives.apache.org/mod_mbox/mina-ftpserver-users/ + https://mail-archives.apache.org/mod_mbox/mina-ftpserver-users/ MINA Development mailing list dev-subscr...@mina.apache.org dev-unsubscr...@mina.apache.org d...@mina.apache.org - http://mail-archives.apache.org/mod_mbox/mina-dev/ + https://mail-archives.apache.org/mod_mbox/mina-dev/ http://www.nabble.com/Apache-MINA-f16868.html @@ -67,7 +67,7 @@ MINA Commit mailing list commits-subscr...@mina.apache.org commits-unsubscr...@mina.apache.org - http://mail-archives.apache.org/mod_mbox/mina-commits/ + https://mail-archives.apache.org/mod_mbox/mina-commits/ @@ -127,10 +127,10 @@ - scm:git:https://git-wip-us.apache.org/repos/as/mina-ftpserver.git -https://git-wip-us.apache.org/repos/asf?p=mina-ftpserver.git - scm:git:http://git-wip-us.apache.org/repos/asf/mina-ftpserver.git -HEAD + scm:git:https://gitbox.apache.org/repos/asf/mina-ftpserver.git + scm:git:https://gitbox.apache.org/repos/asf/mina-ftpserver.git +https://github.com/apache/mina-ftpserver/tree/${project.scm.tag} +master @@ -144,7 +144,7 @@ 1.7.21 4.12 1.2.17 -2.0.16 +2.0.21 1.7.21 1.7.21 2.5.5 @@ -247,6 +247,7 @@ org.apache.rat apache-rat-plugin 0.12 + true false @@ -274,6 +275,14 @@ **/dependency-reduced-pom.xml + + + verify + +check + + +
[mina-sshd] branch master updated: Reverted some of the http->https changes; Updated the scm part
This is an automated email from the ASF dual-hosted git repository. elecharny pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mina-sshd.git The following commit(s) were added to refs/heads/master by this push: new 210446f Reverted some of the http->https changes; Updated the scm part 210446f is described below commit 210446fcd641ba3c650c10f23dc5feb4df77fc03 Author: emmanuel lecharny AuthorDate: Wed May 29 15:05:36 2019 +0200 Reverted some of the http->https changes; Updated the scm part --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 8790418..1c3b45b 100644 --- a/pom.xml +++ b/pom.xml @@ -1,4 +1,4 @@ -https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd";> +http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";>
[mina] branch 2.0.X updated: Switched back to http for the 'project' tag in each pom.xml.
This is an automated email from the ASF dual-hosted git repository. elecharny pushed a commit to branch 2.0.X in repository https://gitbox.apache.org/repos/asf/mina.git The following commit(s) were added to refs/heads/2.0.X by this push: new 087bb71 Switched back to http for the 'project' tag in each pom.xml. 087bb71 is described below commit 087bb7191668023087f4b0f59ec33a4eb46f2a01 Author: emmanuel lecharny AuthorDate: Wed May 29 23:47:38 2019 +0200 Switched back to http for the 'project' tag in each pom.xml. --- distribution/pom.xml| 2 +- mina-core/pom.xml | 2 +- mina-example/pom.xml| 2 +- mina-filter-compression/pom.xml | 2 +- mina-http/pom.xml | 2 +- mina-integration-beans/pom.xml | 2 +- mina-integration-jmx/pom.xml| 2 +- mina-integration-ognl/pom.xml | 2 +- mina-integration-xbean/pom.xml | 5 +- mina-legal/pom.xml | 110 mina-statemachine/pom.xml | 2 +- mina-transport-apr/pom.xml | 2 +- mina-transport-serial/pom.xml | 2 +- pom.xml | 6 +-- 14 files changed, 71 insertions(+), 72 deletions(-) diff --git a/distribution/pom.xml b/distribution/pom.xml index 04c5c0c..bc2b5e8 100644 --- a/distribution/pom.xml +++ b/distribution/pom.xml @@ -18,7 +18,7 @@ under the License. --> -https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd";> +http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd";> 4.0.0 diff --git a/mina-core/pom.xml b/mina-core/pom.xml index 9597214..4a18ae3 100644 --- a/mina-core/pom.xml +++ b/mina-core/pom.xml @@ -19,7 +19,7 @@ under the License. --> -https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd";> +http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd";> 4.0.0 org.apache.mina diff --git a/mina-example/pom.xml b/mina-example/pom.xml index 381340f..893115d 100644 --- a/mina-example/pom.xml +++ b/mina-example/pom.xml @@ -16,7 +16,7 @@ specific language governing permissions and limitations under the License. --> -https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd";> +http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd";> 4.0.0 org.apache.mina diff --git a/mina-filter-compression/pom.xml b/mina-filter-compression/pom.xml index 1cf9f3d..3857cf2 100644 --- a/mina-filter-compression/pom.xml +++ b/mina-filter-compression/pom.xml @@ -19,7 +19,7 @@ under the License. --> -https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd";> +http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd";> 4.0.0 org.apache.mina diff --git a/mina-http/pom.xml b/mina-http/pom.xml index 0fb634f..2747246 100644 --- a/mina-http/pom.xml +++ b/mina-http/pom.xml @@ -19,7 +19,7 @@ under the License. --> -https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd";> +http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd";> 4.0.0 org.apache.mina diff --git a/mina-integration-beans/pom.xml b/mina-integration-beans/pom.xml index c658cc5..62ae759 100644 --- a/mina-integration-beans/pom.xml +++ b/mina-integration-beans/pom.xml @@ -19,7 +19,7 @@ under the License. --> -https://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd";> +http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd";> 4.0.0 org.ap
svn commit: r1045718 - in /websites/production/mina/content/mina-project/gen-docs/2.1.3: ./ apidocs/ apidocs/org/ apidocs/org/apache/ apidocs/org/apache/mina/ apidocs/org/apache/mina/core/ apidocs/org
Author: elecharny Date: Thu May 30 05:42:35 2019 New Revision: 1045718 Log: Injected Apache MINA 2.1.3 javadoc [This commit notification would consist of 479 parts, which exceeds the limit of 50 ones, so it was shortened to the summary.]