From 9e72eb3bc3366145f90d4f893ac0588b23892cd3 Mon Sep 17 00:00:00 2001 From: Megala Date: Tue, 6 Dec 2016 17:18:20 +0530 Subject: [PATCH 001/405] Adding siddhi extension and analytics for android-agent --- pom.xml | 90 +++++++++++++++ .../json/getPropertyFunctionExtension.java | 108 ++++++++++++++++++ src/main/resources/json.siddhiext | 19 +++ .../json/getPropertyFunctionTestCase.java | 88 ++++++++++++++ .../json/test/util/SiddhiTestHelper.java | 32 ++++++ src/test/resources/log4j.properties | 36 ++++++ 6 files changed, 373 insertions(+) create mode 100644 pom.xml create mode 100644 src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java create mode 100644 src/main/resources/json.siddhiext create mode 100644 src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java create mode 100644 src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java create mode 100644 src/test/resources/log4j.properties diff --git a/pom.xml b/pom.xml new file mode 100644 index 000000000..b14a66967 --- /dev/null +++ b/pom.xml @@ -0,0 +1,90 @@ + + + + + + + org.wso2.carbon.devicemgt-plugins + siddhi-extensions + 3.0.3-SNAPSHOT + ../pom.xml + + + 4.0.0 + org.wso2.extension.siddhi.execution.json + bundle + WSO2 Siddhi Execution Extension - Json + http://wso2.org + + + + org.wso2.siddhi + siddhi-core + + + org.wso2.siddhi + siddhi-query-api + + + log4j + log4j + + + org.json.wso2 + json + + + junit + junit + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + ${wso2.maven.compiler.source} + ${wso2.maven.compiler.target} + + + + org.apache.felix + maven-bundle-plugin + true + + + ${project.artifactId} + ${project.artifactId} + + org.wso2.extension.siddhi.execution.json, + org.wso2.extension.siddhi.execution.json.* + + + org.json, + org.wso2.siddhi.core.*, + org.wso2.siddhi.query.api.*, + + + + + + + \ No newline at end of file diff --git a/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java b/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java new file mode 100644 index 000000000..78c873a55 --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java @@ -0,0 +1,108 @@ +/* + * Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.wso2.extension.siddhi.execution.json; + +import org.json.JSONObject; +import org.wso2.siddhi.core.config.ExecutionPlanContext; +import org.wso2.siddhi.core.exception.ExecutionPlanRuntimeException; +import org.wso2.siddhi.core.executor.ExpressionExecutor; +import org.wso2.siddhi.core.executor.function.FunctionExecutor; +import org.wso2.siddhi.query.api.definition.Attribute; +import org.wso2.siddhi.query.api.exception.ExecutionPlanValidationException; + +/** + * getProperty(json , propertyName) + * Returns the vale of the property from the given json json + * Accept Type(s): (STRING, STRING) + * Return Type(s): (STRING|INT|DOUBLE|FLOAT|OBJECT) + */ +public class getPropertyFunctionExtension extends FunctionExecutor { + + Attribute.Type returnType = Attribute.Type.STRING; + + @Override + protected void init(ExpressionExecutor[] attributeExpressionExecutors, + ExecutionPlanContext executionPlanContext) { + if (attributeExpressionExecutors.length != 2) { + throw new ExecutionPlanValidationException( + "Invalid no of arguments passed to json:getProperty() function," + " required 2, but found " + + attributeExpressionExecutors.length); + } + if (attributeExpressionExecutors[0].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the first argument of json:getProperty() function, " + "required " + + Attribute.Type.STRING + ", but found " + attributeExpressionExecutors[0].getReturnType() + .toString()); + } + if (attributeExpressionExecutors[1].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the second argument of json:getProperty() function, " + "required " + + Attribute.Type.STRING + ", but found " + attributeExpressionExecutors[1].getReturnType() + .toString()); + } + } + + @Override + protected Object execute(Object[] data) { + if (data[0] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to json:getProperty() function. First argument cannot be null"); + } + if (data[1] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to json:getProperty() function. Second argument cannot be null"); + } + String jsonString = (String) data[0]; + String property = (String) data[1]; + + JSONObject jsonObject = new JSONObject(jsonString); + Object value = jsonObject.get(property).toString(); + return value; + } + + @Override + protected Object execute(Object data) { + return null; //Since the getProperty function takes in 2 parameters, this method does not get called. Hence,not implemented. + } + + @Override + public void start() { + //Nothing to start + } + + @Override + public void stop() { + //Nothing to stop + } + + @Override + public Attribute.Type getReturnType() { + return returnType; + } + + @Override + public Object[] currentState() { + return null; //No need to maintain a state. + } + + @Override + public void restoreState(Object[] state) { + //Since there's no need to maintain a state, nothing needs to be done here. + } +} + + diff --git a/src/main/resources/json.siddhiext b/src/main/resources/json.siddhiext new file mode 100644 index 000000000..f1886dd63 --- /dev/null +++ b/src/main/resources/json.siddhiext @@ -0,0 +1,19 @@ +# +# Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +# +# WSO2 Inc. licenses this file to you under the Apache License, +# Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + +getProperty=org.wso2.extension.siddhi.execution.json.getPropertyFunctionExtension diff --git a/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java b/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java new file mode 100644 index 000000000..7bc66478c --- /dev/null +++ b/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java @@ -0,0 +1,88 @@ +/* + * Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.wso2.extension.siddhi.execution.json; + +import junit.framework.Assert; +import org.apache.log4j.Logger; +import org.junit.Before; +import org.junit.Test; +import org.wso2.siddhi.core.ExecutionPlanRuntime; +import org.wso2.siddhi.core.SiddhiManager; +import org.wso2.siddhi.core.event.Event; +import org.wso2.siddhi.core.query.output.callback.QueryCallback; +import org.wso2.siddhi.core.stream.input.InputHandler; +import org.wso2.siddhi.core.util.EventPrinter; +import org.wso2.extension.siddhi.execution.json.test.util.SiddhiTestHelper; + +import java.util.concurrent.atomic.AtomicInteger; + +public class getPropertyFunctionTestCase { + static final Logger log = Logger.getLogger(getPropertyFunctionTestCase.class); + private AtomicInteger count = new AtomicInteger(0); + private volatile boolean eventArrived; + + @Before + public void init() { + count.set(0); + eventArrived = false; + } + + @Test + public void testGetPropertyFunctionExtension() throws InterruptedException { + log.info("getPropertyFunctionExtension TestCase"); + SiddhiManager siddhiManager = new SiddhiManager(); + + String inStreamDefinition = "define stream inputStream (payload string, id string, volume long);"; + String query = ("@info(name = 'query1') from inputStream select id, json:getProperty(payload, 'latitude') " + + "as latitude insert into outputStream;"); + ExecutionPlanRuntime executionPlanRuntime = siddhiManager.createExecutionPlanRuntime(inStreamDefinition + query); + + executionPlanRuntime.addCallback("query1", new QueryCallback() { + @Override + public void receive(long timeStamp, Event[] inEvents, Event[] removeEvents) { + EventPrinter.print(timeStamp, inEvents, removeEvents); + for (Event event : inEvents) { + count.incrementAndGet(); + if (count.get() == 1) { + Assert.assertEquals("1.5", event.getData(1)); + eventArrived = true; + } + if (count.get() == 2) { + Assert.assertEquals("67.5", event.getData(1)); + eventArrived = true; + } + if (count.get() == 3) { + Assert.assertEquals("7.5", event.getData(1)); + eventArrived = true; + } + } + } + }); + + InputHandler inputHandler = executionPlanRuntime.getInputHandler("inputStream"); + executionPlanRuntime.start(); + inputHandler.send(new Object[]{"{'latitude' : 1.5, 'longitude' : 78.5}","IBM",100l}); + inputHandler.send(new Object[]{"{'latitude' : 67.5, 'longitude' : 34.9}","WSO2", 200l}); + inputHandler.send(new Object[]{"{'latitude' : 7.5, 'longitude' : 44.9}", "XYZ", 200l}); + SiddhiTestHelper.waitForEvents(100, 3, count, 60000); + Assert.assertEquals(3, count.get()); + Assert.assertTrue(eventArrived); + executionPlanRuntime.shutdown(); + } +} diff --git a/src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java b/src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java new file mode 100644 index 000000000..9cfd6c307 --- /dev/null +++ b/src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java @@ -0,0 +1,32 @@ +/* + * Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.wso2.extension.siddhi.execution.json.test.util; + +import java.util.concurrent.atomic.AtomicInteger; + +public class SiddhiTestHelper { + public static void waitForEvents(long sleepTime, int expectedCount, AtomicInteger actualCount, long timeout) throws InterruptedException { + long currentWaitTime = 0; + long startTime = System.currentTimeMillis(); + while ((actualCount.get() < expectedCount) && (currentWaitTime <= timeout)) { + Thread.sleep(sleepTime); + currentWaitTime = System.currentTimeMillis() - startTime; + } + } +} diff --git a/src/test/resources/log4j.properties b/src/test/resources/log4j.properties new file mode 100644 index 000000000..96c79e944 --- /dev/null +++ b/src/test/resources/log4j.properties @@ -0,0 +1,36 @@ +# +# Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +# +# WSO2 Inc. licenses this file to you under the Apache License, +# Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + + +# For the general syntax of property based configuration files see the +# documenation of org.apache.log4j.PropertyConfigurator. + +# The root category uses the appender called A1. Since no priority is +# specified, the root category assumes the default priority for root +# which is DEBUG in log4j. The root category is the only category that +# has a default priority. All other categories need not be assigned a +# priority in which case they inherit their priority from the +# hierarchy. + +#log4j.rootLogger=DEBUG, stdout +log4j.rootLogger=INFO, stdout + +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout +log4j.appender.stdout.layout.ConversionPattern=%m%n +#log4j.appender.stdout.layout.ConversionPattern=[%t] %-5p %c %x - %m%n From 7717ac137f31798ca09391f9b1df700f33eef9b2 Mon Sep 17 00:00:00 2001 From: Megala Date: Wed, 7 Dec 2016 15:29:32 +0530 Subject: [PATCH 002/405] Fixing bundle loading problem --- pom.xml | 1 + .../execution/json/getPropertyFunctionExtension.java | 12 ++++++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index b14a66967..b1671cc44 100644 --- a/pom.xml +++ b/pom.xml @@ -47,6 +47,7 @@ org.json.wso2 json + ${analytics.json.version} junit diff --git a/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java b/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java index 78c873a55..8f68577a6 100644 --- a/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java +++ b/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java @@ -18,6 +18,7 @@ package org.wso2.extension.siddhi.execution.json; +import org.json.JSONException; import org.json.JSONObject; import org.wso2.siddhi.core.config.ExecutionPlanContext; import org.wso2.siddhi.core.exception.ExecutionPlanRuntimeException; @@ -68,10 +69,13 @@ public class getPropertyFunctionExtension extends FunctionExecutor { } String jsonString = (String) data[0]; String property = (String) data[1]; - - JSONObject jsonObject = new JSONObject(jsonString); - Object value = jsonObject.get(property).toString(); - return value; + JSONObject jsonObject = null; + try { + jsonObject = new JSONObject(jsonString); + return jsonObject.get(property).toString(); + } catch (JSONException e) { + throw new ExecutionPlanRuntimeException("Cannot parse JSON String in json:getPeroperty() function. " + e); + } } @Override From 572aa24c5fab9bfde1efabeb45ba77c9ae8ed4b3 Mon Sep 17 00:00:00 2001 From: Harshan Liyanage Date: Thu, 8 Dec 2016 16:40:18 +0530 Subject: [PATCH 003/405] Resolved conflicts --- pom.xml | 91 ++++++++++++++ .../json/getPropertyFunctionExtension.java | 112 ++++++++++++++++++ src/main/resources/json.siddhiext | 19 +++ .../json/getPropertyFunctionTestCase.java | 88 ++++++++++++++ .../json/test/util/SiddhiTestHelper.java | 32 +++++ src/test/resources/log4j.properties | 36 ++++++ 6 files changed, 378 insertions(+) create mode 100644 pom.xml create mode 100644 src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java create mode 100644 src/main/resources/json.siddhiext create mode 100644 src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java create mode 100644 src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java create mode 100644 src/test/resources/log4j.properties diff --git a/pom.xml b/pom.xml new file mode 100644 index 000000000..b1671cc44 --- /dev/null +++ b/pom.xml @@ -0,0 +1,91 @@ + + + + + + + org.wso2.carbon.devicemgt-plugins + siddhi-extensions + 3.0.3-SNAPSHOT + ../pom.xml + + + 4.0.0 + org.wso2.extension.siddhi.execution.json + bundle + WSO2 Siddhi Execution Extension - Json + http://wso2.org + + + + org.wso2.siddhi + siddhi-core + + + org.wso2.siddhi + siddhi-query-api + + + log4j + log4j + + + org.json.wso2 + json + ${analytics.json.version} + + + junit + junit + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + ${wso2.maven.compiler.source} + ${wso2.maven.compiler.target} + + + + org.apache.felix + maven-bundle-plugin + true + + + ${project.artifactId} + ${project.artifactId} + + org.wso2.extension.siddhi.execution.json, + org.wso2.extension.siddhi.execution.json.* + + + org.json, + org.wso2.siddhi.core.*, + org.wso2.siddhi.query.api.*, + + + + + + + \ No newline at end of file diff --git a/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java b/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java new file mode 100644 index 000000000..8f68577a6 --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java @@ -0,0 +1,112 @@ +/* + * Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.wso2.extension.siddhi.execution.json; + +import org.json.JSONException; +import org.json.JSONObject; +import org.wso2.siddhi.core.config.ExecutionPlanContext; +import org.wso2.siddhi.core.exception.ExecutionPlanRuntimeException; +import org.wso2.siddhi.core.executor.ExpressionExecutor; +import org.wso2.siddhi.core.executor.function.FunctionExecutor; +import org.wso2.siddhi.query.api.definition.Attribute; +import org.wso2.siddhi.query.api.exception.ExecutionPlanValidationException; + +/** + * getProperty(json , propertyName) + * Returns the vale of the property from the given json json + * Accept Type(s): (STRING, STRING) + * Return Type(s): (STRING|INT|DOUBLE|FLOAT|OBJECT) + */ +public class getPropertyFunctionExtension extends FunctionExecutor { + + Attribute.Type returnType = Attribute.Type.STRING; + + @Override + protected void init(ExpressionExecutor[] attributeExpressionExecutors, + ExecutionPlanContext executionPlanContext) { + if (attributeExpressionExecutors.length != 2) { + throw new ExecutionPlanValidationException( + "Invalid no of arguments passed to json:getProperty() function," + " required 2, but found " + + attributeExpressionExecutors.length); + } + if (attributeExpressionExecutors[0].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the first argument of json:getProperty() function, " + "required " + + Attribute.Type.STRING + ", but found " + attributeExpressionExecutors[0].getReturnType() + .toString()); + } + if (attributeExpressionExecutors[1].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the second argument of json:getProperty() function, " + "required " + + Attribute.Type.STRING + ", but found " + attributeExpressionExecutors[1].getReturnType() + .toString()); + } + } + + @Override + protected Object execute(Object[] data) { + if (data[0] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to json:getProperty() function. First argument cannot be null"); + } + if (data[1] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to json:getProperty() function. Second argument cannot be null"); + } + String jsonString = (String) data[0]; + String property = (String) data[1]; + JSONObject jsonObject = null; + try { + jsonObject = new JSONObject(jsonString); + return jsonObject.get(property).toString(); + } catch (JSONException e) { + throw new ExecutionPlanRuntimeException("Cannot parse JSON String in json:getPeroperty() function. " + e); + } + } + + @Override + protected Object execute(Object data) { + return null; //Since the getProperty function takes in 2 parameters, this method does not get called. Hence,not implemented. + } + + @Override + public void start() { + //Nothing to start + } + + @Override + public void stop() { + //Nothing to stop + } + + @Override + public Attribute.Type getReturnType() { + return returnType; + } + + @Override + public Object[] currentState() { + return null; //No need to maintain a state. + } + + @Override + public void restoreState(Object[] state) { + //Since there's no need to maintain a state, nothing needs to be done here. + } +} + + diff --git a/src/main/resources/json.siddhiext b/src/main/resources/json.siddhiext new file mode 100644 index 000000000..f1886dd63 --- /dev/null +++ b/src/main/resources/json.siddhiext @@ -0,0 +1,19 @@ +# +# Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +# +# WSO2 Inc. licenses this file to you under the Apache License, +# Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + +getProperty=org.wso2.extension.siddhi.execution.json.getPropertyFunctionExtension diff --git a/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java b/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java new file mode 100644 index 000000000..7bc66478c --- /dev/null +++ b/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java @@ -0,0 +1,88 @@ +/* + * Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.wso2.extension.siddhi.execution.json; + +import junit.framework.Assert; +import org.apache.log4j.Logger; +import org.junit.Before; +import org.junit.Test; +import org.wso2.siddhi.core.ExecutionPlanRuntime; +import org.wso2.siddhi.core.SiddhiManager; +import org.wso2.siddhi.core.event.Event; +import org.wso2.siddhi.core.query.output.callback.QueryCallback; +import org.wso2.siddhi.core.stream.input.InputHandler; +import org.wso2.siddhi.core.util.EventPrinter; +import org.wso2.extension.siddhi.execution.json.test.util.SiddhiTestHelper; + +import java.util.concurrent.atomic.AtomicInteger; + +public class getPropertyFunctionTestCase { + static final Logger log = Logger.getLogger(getPropertyFunctionTestCase.class); + private AtomicInteger count = new AtomicInteger(0); + private volatile boolean eventArrived; + + @Before + public void init() { + count.set(0); + eventArrived = false; + } + + @Test + public void testGetPropertyFunctionExtension() throws InterruptedException { + log.info("getPropertyFunctionExtension TestCase"); + SiddhiManager siddhiManager = new SiddhiManager(); + + String inStreamDefinition = "define stream inputStream (payload string, id string, volume long);"; + String query = ("@info(name = 'query1') from inputStream select id, json:getProperty(payload, 'latitude') " + + "as latitude insert into outputStream;"); + ExecutionPlanRuntime executionPlanRuntime = siddhiManager.createExecutionPlanRuntime(inStreamDefinition + query); + + executionPlanRuntime.addCallback("query1", new QueryCallback() { + @Override + public void receive(long timeStamp, Event[] inEvents, Event[] removeEvents) { + EventPrinter.print(timeStamp, inEvents, removeEvents); + for (Event event : inEvents) { + count.incrementAndGet(); + if (count.get() == 1) { + Assert.assertEquals("1.5", event.getData(1)); + eventArrived = true; + } + if (count.get() == 2) { + Assert.assertEquals("67.5", event.getData(1)); + eventArrived = true; + } + if (count.get() == 3) { + Assert.assertEquals("7.5", event.getData(1)); + eventArrived = true; + } + } + } + }); + + InputHandler inputHandler = executionPlanRuntime.getInputHandler("inputStream"); + executionPlanRuntime.start(); + inputHandler.send(new Object[]{"{'latitude' : 1.5, 'longitude' : 78.5}","IBM",100l}); + inputHandler.send(new Object[]{"{'latitude' : 67.5, 'longitude' : 34.9}","WSO2", 200l}); + inputHandler.send(new Object[]{"{'latitude' : 7.5, 'longitude' : 44.9}", "XYZ", 200l}); + SiddhiTestHelper.waitForEvents(100, 3, count, 60000); + Assert.assertEquals(3, count.get()); + Assert.assertTrue(eventArrived); + executionPlanRuntime.shutdown(); + } +} diff --git a/src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java b/src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java new file mode 100644 index 000000000..9cfd6c307 --- /dev/null +++ b/src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java @@ -0,0 +1,32 @@ +/* + * Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.wso2.extension.siddhi.execution.json.test.util; + +import java.util.concurrent.atomic.AtomicInteger; + +public class SiddhiTestHelper { + public static void waitForEvents(long sleepTime, int expectedCount, AtomicInteger actualCount, long timeout) throws InterruptedException { + long currentWaitTime = 0; + long startTime = System.currentTimeMillis(); + while ((actualCount.get() < expectedCount) && (currentWaitTime <= timeout)) { + Thread.sleep(sleepTime); + currentWaitTime = System.currentTimeMillis() - startTime; + } + } +} diff --git a/src/test/resources/log4j.properties b/src/test/resources/log4j.properties new file mode 100644 index 000000000..96c79e944 --- /dev/null +++ b/src/test/resources/log4j.properties @@ -0,0 +1,36 @@ +# +# Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +# +# WSO2 Inc. licenses this file to you under the Apache License, +# Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + + +# For the general syntax of property based configuration files see the +# documenation of org.apache.log4j.PropertyConfigurator. + +# The root category uses the appender called A1. Since no priority is +# specified, the root category assumes the default priority for root +# which is DEBUG in log4j. The root category is the only category that +# has a default priority. All other categories need not be assigned a +# priority in which case they inherit their priority from the +# hierarchy. + +#log4j.rootLogger=DEBUG, stdout +log4j.rootLogger=INFO, stdout + +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout +log4j.appender.stdout.layout.ConversionPattern=%m%n +#log4j.appender.stdout.layout.ConversionPattern=[%t] %-5p %c %x - %m%n From 0668bb45f6ebee73c08452f9438f3f896cd0c15e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 9 Dec 2016 05:43:17 +0000 Subject: [PATCH 004/405] [maven-release-plugin] prepare release v3.0.3 --- pom.xml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index b1671cc44..961d729f7 100644 --- a/pom.xml +++ b/pom.xml @@ -15,13 +15,12 @@ ~ limitations under the License. --> - + org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.3-SNAPSHOT + 3.0.3 ../pom.xml From 562fc0cffff9aea17eacb541d00cb7b2c2d2be62 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 9 Dec 2016 05:46:04 +0000 Subject: [PATCH 005/405] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 961d729f7..818342bfa 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.3 + 3.0.4-SNAPSHOT ../pom.xml From 7be4504048d938472d5694d5c8db719d714e2a9e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 24 Dec 2016 03:13:35 +0000 Subject: [PATCH 006/405] [maven-release-plugin] prepare release v3.0.4 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 818342bfa..a043cf605 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.4-SNAPSHOT + 3.0.4 ../pom.xml From 023e389ec84e21d31db8063c0f8423c97b709e6b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 24 Dec 2016 03:15:18 +0000 Subject: [PATCH 007/405] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a043cf605..fa7056957 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.4 + 3.0.5-SNAPSHOT ../pom.xml From 77cfaac0b64e41d80eda909878df5c2ac21528e3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 7 Jan 2017 11:22:33 +0000 Subject: [PATCH 008/405] [maven-release-plugin] prepare release v3.0.5 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fa7056957..fb1a879fd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.5-SNAPSHOT + 3.0.5 ../pom.xml From 2472a1e56e52ffe0ebbfdc43e5ce4b6359ce4043 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 7 Jan 2017 11:25:51 +0000 Subject: [PATCH 009/405] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fb1a879fd..d1f5e612b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.5 + 3.0.6-SNAPSHOT ../pom.xml From 9fb126ccb6c5b9176e3b199b7caa2a9346962a29 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 14 Jan 2017 12:17:46 +0000 Subject: [PATCH 010/405] [maven-release-plugin] prepare release v3.0.6 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d1f5e612b..206a6b230 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.6-SNAPSHOT + 3.0.6 ../pom.xml From c96bd20b2f66741af4d848413991643b452d6933 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 14 Jan 2017 12:22:40 +0000 Subject: [PATCH 011/405] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 206a6b230..5a7409be9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.6 + 3.0.7-SNAPSHOT ../pom.xml From 204e511a8f1b3a1901405b36b12af086d293315a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 20 Jan 2017 02:03:09 +0000 Subject: [PATCH 012/405] [maven-release-plugin] prepare release v3.0.7 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5a7409be9..37adb4e17 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.7-SNAPSHOT + 3.0.7 ../pom.xml From 17829fa70ecc7c6f6f5443156c4b92770229823d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 20 Jan 2017 02:04:54 +0000 Subject: [PATCH 013/405] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 37adb4e17..6184b9d30 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.7 + 3.0.8-SNAPSHOT ../pom.xml From 8abd6de2659320bf2fcad854cbf955982370fa22 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 20 Jan 2017 13:31:44 +0000 Subject: [PATCH 014/405] [maven-release-plugin] prepare release v3.0.8 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6184b9d30..468391c95 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.8-SNAPSHOT + 3.0.8 ../pom.xml From 5a2403eadaf7b4520cd35975615ad7886cdbc059 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 20 Jan 2017 13:36:50 +0000 Subject: [PATCH 015/405] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 468391c95..13f96e631 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.8 + 3.0.9-SNAPSHOT ../pom.xml From a491fcb92bab1b5cde40f693a10e4f1ff926dddd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 30 Jan 2017 18:07:24 +0530 Subject: [PATCH 016/405] [WSO2 Release] [Jenkins #2500] [Release 3.0.9] prepare release v3.0.9 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 13f96e631..9004d3591 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.9-SNAPSHOT + 3.0.9 ../pom.xml From 4bb988ddbbe9e73b9f2543f9b762168ae6f86c34 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 30 Jan 2017 18:07:35 +0530 Subject: [PATCH 017/405] [WSO2 Release] [Jenkins #2500] [Release 3.0.9] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9004d3591..1d1ba2ca6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.9 + 3.0.10-SNAPSHOT ../pom.xml From 00e1ef7a14f56f5b50e3c78ef7570f8282a325e2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 31 Jan 2017 12:58:45 +0530 Subject: [PATCH 018/405] [maven-release-plugin] prepare release v3.0.10 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1d1ba2ca6..1e8799fd9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.10-SNAPSHOT + 3.0.10 ../pom.xml From 0c4c10255e6ef38ccc51c53361a50b9b02e85f54 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 31 Jan 2017 12:58:56 +0530 Subject: [PATCH 019/405] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1e8799fd9..9122e5db2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.10 + 3.0.11-SNAPSHOT ../pom.xml From fac25ebdc752ed3634ab4aa41617b052006605fa Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 2 Feb 2017 16:05:58 +0530 Subject: [PATCH 020/405] [WSO2 Release] [Jenkins #2510] [Release 3.0.11] prepare release v3.0.11 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9122e5db2..027827397 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.11-SNAPSHOT + 3.0.11 ../pom.xml From 9ee49ab3950c89d31a67eb82fdf4aba0ebc315f4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 2 Feb 2017 16:06:06 +0530 Subject: [PATCH 021/405] [WSO2 Release] [Jenkins #2510] [Release 3.0.11] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 027827397..c90a2dabb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.11 + 3.0.12-SNAPSHOT ../pom.xml From 201f6fd754e223baedb6305d432591f46e42d348 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 13 Mar 2017 17:43:10 +0530 Subject: [PATCH 022/405] [WSO2 Release] [Jenkins #2576] [Release 3.0.12] prepare release v3.0.12 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c90a2dabb..8beb67973 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.12-SNAPSHOT + 3.0.12 ../pom.xml From d0feef699900df63c30885788529eeeef089f0fb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 13 Mar 2017 17:43:20 +0530 Subject: [PATCH 023/405] [WSO2 Release] [Jenkins #2576] [Release 3.0.12] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8beb67973..f7f0d3bf1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.12 + 3.0.13-SNAPSHOT ../pom.xml From 917325866708e525c39c4de23698d204d87465b8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 14 Mar 2017 16:48:11 +0530 Subject: [PATCH 024/405] [WSO2 Release] [Jenkins #2581] [Release 3.0.13] prepare release v3.0.13 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f7f0d3bf1..54486d713 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.13-SNAPSHOT + 3.0.13 ../pom.xml From 8547e102a0491ce2a85508d7a5163495773f40fc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 14 Mar 2017 16:48:21 +0530 Subject: [PATCH 025/405] [WSO2 Release] [Jenkins #2581] [Release 3.0.13] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 54486d713..2052d39bc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.13 + 3.0.14-SNAPSHOT ../pom.xml From 531dd86a67be528646fab80fd7aa3fa3b5f60e14 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 15 Mar 2017 18:08:26 +0530 Subject: [PATCH 026/405] [WSO2 Release] [Jenkins #2584] [Release 3.0.14] prepare release v3.0.14 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2052d39bc..dd5eca8f7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.14-SNAPSHOT + 3.0.14 ../pom.xml From e8d595a12dc452c0e35f93962d7d447ffa60f2d5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 15 Mar 2017 18:08:34 +0530 Subject: [PATCH 027/405] [WSO2 Release] [Jenkins #2584] [Release 3.0.14] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dd5eca8f7..1defbead7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.14 + 3.0.15-SNAPSHOT ../pom.xml From 75d26f8fb5d4da12c6b9b8c3ba0319792b2f4c9c Mon Sep 17 00:00:00 2001 From: megala21 Date: Thu, 16 Mar 2017 21:42:44 +0530 Subject: [PATCH 028/405] Updating json version --- pom.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1defbead7..dcd8f428a 100644 --- a/pom.xml +++ b/pom.xml @@ -46,7 +46,6 @@ org.json.wso2 json - ${analytics.json.version} junit From bb2ff5f18bdc8189a0578d442ed9302be8fd14ca Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 21 Mar 2017 20:11:33 +0530 Subject: [PATCH 029/405] [WSO2 Release] [Jenkins #2593] [Release 3.0.15] prepare release v3.0.15 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dcd8f428a..28ecd9b82 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.15-SNAPSHOT + 3.0.15 ../pom.xml From 96f543c3117377abb02857785dc5412a81514c18 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 21 Mar 2017 20:11:47 +0530 Subject: [PATCH 030/405] [WSO2 Release] [Jenkins #2593] [Release 3.0.15] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 28ecd9b82..02d53e7ff 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.15 + 3.0.16-SNAPSHOT ../pom.xml From 657e99b95771d44bd01fc6d774b04f6bde9dc8de Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 22 Mar 2017 15:53:34 +0530 Subject: [PATCH 031/405] [WSO2 Release] [Jenkins #2596] [Release 3.0.16] prepare release v3.0.16 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 02d53e7ff..2857e32b4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.16-SNAPSHOT + 3.0.16 ../pom.xml From 919dbcf847f5c7cc71bd1ec81905f62f45dbd5c2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 22 Mar 2017 15:53:43 +0530 Subject: [PATCH 032/405] [WSO2 Release] [Jenkins #2596] [Release 3.0.16] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2857e32b4..43b757681 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.16 + 3.0.17-SNAPSHOT ../pom.xml From 1f8f7a51398ca62a4cc3492e5630cd7b8211a0e3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Mar 2017 13:14:05 +0530 Subject: [PATCH 033/405] [WSO2 Release] [Jenkins #2602] [Release 3.0.17] prepare release v3.0.17 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 43b757681..f885f9ff7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.17-SNAPSHOT + 3.0.17 ../pom.xml From cd48ca4c58449e69c2ac446d9a2ea4f5f712cb11 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Mar 2017 13:14:16 +0530 Subject: [PATCH 034/405] [WSO2 Release] [Jenkins #2602] [Release 3.0.17] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f885f9ff7..963eb6d89 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.17 + 3.0.18-SNAPSHOT ../pom.xml From d7c32760ebf65252f2dbeaaffa785d695aaac9e6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 24 Mar 2017 15:45:32 +0530 Subject: [PATCH 035/405] [WSO2 Release] [Jenkins #2605] [Release 3.0.18] prepare release v3.0.18 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 963eb6d89..a019aec98 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.18-SNAPSHOT + 3.0.18 ../pom.xml From f068800bf62beaa43ef2fb9ae1ad89652e4fcf50 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 24 Mar 2017 15:45:48 +0530 Subject: [PATCH 036/405] [WSO2 Release] [Jenkins #2605] [Release 3.0.18] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a019aec98..b317199f9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.18 + 3.0.19-SNAPSHOT ../pom.xml From ee6737f30e2914ebe80563223247212297ab87b4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Mar 2017 11:13:18 +0530 Subject: [PATCH 037/405] [WSO2 Release] [Jenkins #2612] [Release 3.0.19] prepare release v3.0.19 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b317199f9..83f82b632 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.19-SNAPSHOT + 3.0.19 ../pom.xml From e3663862b1de4a3716a7c23e971f0217bd432c24 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Mar 2017 11:13:40 +0530 Subject: [PATCH 038/405] [WSO2 Release] [Jenkins #2612] [Release 3.0.19] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 83f82b632..c3a6b7423 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.19 + 3.0.20-SNAPSHOT ../pom.xml From 8b41c4ae145678c12056fe2dd30052001a7e9ece Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Mar 2017 15:22:46 +0530 Subject: [PATCH 039/405] [WSO2 Release] [Jenkins #2614] [Release 3.0.20] prepare release v3.0.20 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c3a6b7423..cc7fe7ce5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.20-SNAPSHOT + 3.0.20 ../pom.xml From eb3a7611fac18223a3ab3c5b4962812a85622ad6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Mar 2017 15:23:01 +0530 Subject: [PATCH 040/405] [WSO2 Release] [Jenkins #2614] [Release 3.0.20] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cc7fe7ce5..853ace287 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.20 + 3.0.21-SNAPSHOT ../pom.xml From e7883615c9f6dce1a91125fcee4267e79e444810 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 30 Mar 2017 10:31:12 +0530 Subject: [PATCH 041/405] [WSO2 Release] [Jenkins #2617] [Release 3.0.21] prepare release v3.0.21 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 853ace287..8ccf7b580 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.21-SNAPSHOT + 3.0.21 ../pom.xml From 17d6903d19d4832232f68ee8a5ea8bad67c106c8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 30 Mar 2017 10:31:28 +0530 Subject: [PATCH 042/405] [WSO2 Release] [Jenkins #2617] [Release 3.0.21] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8ccf7b580..bd0556e10 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.21 + 3.0.22-SNAPSHOT ../pom.xml From ccee5ec95ebbfdb3bd86fabcb5b408fcbd345c5d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 7 Apr 2017 14:56:13 +0530 Subject: [PATCH 043/405] [WSO2 Release] [Jenkins #2627] [Release 3.0.22] prepare release v3.0.22 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bd0556e10..20132ebc5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.22-SNAPSHOT + 3.0.22 ../pom.xml From 1e4d338d1620afebc63db32cd33369bba8c4f8bb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 7 Apr 2017 14:56:29 +0530 Subject: [PATCH 044/405] [WSO2 Release] [Jenkins #2627] [Release 3.0.22] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 20132ebc5..38474b32e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.22 + 3.0.23-SNAPSHOT ../pom.xml From c91d8824d1c4784f655da7ea577f9ebaef2eb352 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 18 Apr 2017 10:32:45 +0530 Subject: [PATCH 045/405] [WSO2 Release] [Jenkins #2640] [Release 3.0.23] prepare release v3.0.23 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 38474b32e..189db5ba4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.23-SNAPSHOT + 3.0.23 ../pom.xml From f5d26cb956aff427b2cec655a199f3c1dd42bdb3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 18 Apr 2017 10:33:01 +0530 Subject: [PATCH 046/405] [WSO2 Release] [Jenkins #2640] [Release 3.0.23] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 189db5ba4..a171d8f32 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.23 + 3.0.24-SNAPSHOT ../pom.xml From 176f6253a603c74fca4c6f6596d1e5197da8d40b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 21 Apr 2017 16:28:35 +0530 Subject: [PATCH 047/405] [WSO2 Release] [Jenkins #2645] [Release 3.0.24] prepare release v3.0.24 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a171d8f32..8065bad17 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.24-SNAPSHOT + 3.0.24 ../pom.xml From a54ba775c52cef455359d9c9670d81d4f2b32fc6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 21 Apr 2017 16:28:48 +0530 Subject: [PATCH 048/405] [WSO2 Release] [Jenkins #2645] [Release 3.0.24] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8065bad17..d70dcb735 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.24 + 3.0.25-SNAPSHOT ../pom.xml From e767b9eb977c414682f81db54514f4d2d98eea9a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 24 Apr 2017 17:57:03 +0530 Subject: [PATCH 049/405] [WSO2 Release] [Jenkins #2650] [Release 3.0.25] prepare release v3.0.25 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d70dcb735..3865e788e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.25-SNAPSHOT + 3.0.25 ../pom.xml From 37218f796f3f8a6b23fde697b935bda42c921daf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 24 Apr 2017 17:57:19 +0530 Subject: [PATCH 050/405] [WSO2 Release] [Jenkins #2650] [Release 3.0.25] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3865e788e..3236a6dc3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.25 + 3.0.26-SNAPSHOT ../pom.xml From b5d88986bded16ad5c6702a897b96528ceea8674 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 25 Apr 2017 11:47:01 +0530 Subject: [PATCH 051/405] [WSO2 Release] [Jenkins #2653] [Release 3.0.26] prepare release v3.0.26 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3236a6dc3..543ea2c5e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.26-SNAPSHOT + 3.0.26 ../pom.xml From c598259fde3f57d4238ae1928a7a59f7ab82d6e0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 25 Apr 2017 11:47:30 +0530 Subject: [PATCH 052/405] [WSO2 Release] [Jenkins #2653] [Release 3.0.26] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 543ea2c5e..d13b07457 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.26 + 3.0.27-SNAPSHOT ../pom.xml From 97a7f9ae13bf5b2fb713499d11b78ce5c5e39f99 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 25 Apr 2017 13:13:43 +0530 Subject: [PATCH 053/405] [WSO2 Release] [Jenkins #2654] [Release 3.0.27] prepare release v3.0.27 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d13b07457..61107f057 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.27-SNAPSHOT + 3.0.27 ../pom.xml From a6e959bc92d7509f6ca1bb3e4c3e8e19963da44e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 25 Apr 2017 13:14:01 +0530 Subject: [PATCH 054/405] [WSO2 Release] [Jenkins #2654] [Release 3.0.27] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 61107f057..fd8ac4329 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.27 + 3.0.28-SNAPSHOT ../pom.xml From e48303171bc4fec600e8ea8861b1a21d0ada98d5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 28 Apr 2017 08:38:35 +0530 Subject: [PATCH 055/405] [WSO2 Release] [Jenkins #2659] [Release 3.0.28] prepare release v3.0.28 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fd8ac4329..e0a98eb89 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.28-SNAPSHOT + 3.0.28 ../pom.xml From 69c9f3f0932a408a1d1d48853ced291a12d858c0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 28 Apr 2017 08:38:44 +0530 Subject: [PATCH 056/405] [WSO2 Release] [Jenkins #2659] [Release 3.0.28] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e0a98eb89..7edf75a80 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.28 + 3.0.29-SNAPSHOT ../pom.xml From 974bc8edb9d815b742420a38395141d57b325b36 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 28 Apr 2017 10:32:49 +0530 Subject: [PATCH 057/405] [WSO2 Release] [Jenkins #2661] [Release 3.0.29] prepare release v3.0.29 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7edf75a80..5445fedfa 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.29-SNAPSHOT + 3.0.29 ../pom.xml From 901feab641bb80ea9cc2fa51266f1bad0bd75243 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 28 Apr 2017 10:33:09 +0530 Subject: [PATCH 058/405] [WSO2 Release] [Jenkins #2661] [Release 3.0.29] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5445fedfa..0882019d1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.29 + 3.0.30-SNAPSHOT ../pom.xml From 9bcfdc3b705e8eb87b16e9f37215e7f8b32fbfab Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 1 May 2017 19:56:48 +0530 Subject: [PATCH 059/405] [WSO2 Release] [Jenkins #2666] [Release 3.0.30] prepare release v3.0.30 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0882019d1..0afcab3e7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.30-SNAPSHOT + 3.0.30 ../pom.xml From e9d58bae6864222a96f88a225304eb60af6fd6ee Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 1 May 2017 19:57:06 +0530 Subject: [PATCH 060/405] [WSO2 Release] [Jenkins #2666] [Release 3.0.30] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0afcab3e7..233d4f871 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.30 + 3.0.31-SNAPSHOT ../pom.xml From 1c97ddf30fbe8e748218f5e5b8724f20f5c31451 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 2 May 2017 20:47:39 +0530 Subject: [PATCH 061/405] [WSO2 Release] [Jenkins #2670] [Release 3.0.31] prepare release v3.0.31 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 233d4f871..96f984a97 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.31-SNAPSHOT + 3.0.31 ../pom.xml From e255cca04b906a99b400d31862eb49730d473c5f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 2 May 2017 20:47:53 +0530 Subject: [PATCH 062/405] [WSO2 Release] [Jenkins #2670] [Release 3.0.31] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 96f984a97..6532746fe 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.31 + 3.0.32-SNAPSHOT ../pom.xml From aa4c8ee3e43aa98ca828be5c47b26abb0ffb5b74 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 May 2017 12:44:22 +0530 Subject: [PATCH 063/405] [maven-release-plugin] prepare release v3.0.32 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6532746fe..fbae00f51 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.32-SNAPSHOT + 3.0.32 ../pom.xml From b8b91ea1d2ea14ab6b31bf4ae123c46c1e5b2c2a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 May 2017 12:44:37 +0530 Subject: [PATCH 064/405] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fbae00f51..5389b49e4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.32 + 3.0.33-SNAPSHOT ../pom.xml From ea1349cd075921e67d064c30bf6072bd76effcd1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 May 2017 18:04:39 +0530 Subject: [PATCH 065/405] [WSO2 Release] [Jenkins #2693] [Release 3.0.33] prepare release v3.0.33 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5389b49e4..fa5b12fe9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.33-SNAPSHOT + 3.0.33 ../pom.xml From ac3a87167b7f3534b67d0fe0992a6c65de233a25 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 May 2017 18:04:55 +0530 Subject: [PATCH 066/405] [WSO2 Release] [Jenkins #2693] [Release 3.0.33] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fa5b12fe9..afe157e51 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.33 + 3.0.34-SNAPSHOT ../pom.xml From 4b8e61e394870b181d1f10d50c1ed70ec628a286 Mon Sep 17 00:00:00 2001 From: ayyoob Date: Wed, 10 May 2017 23:10:44 +0530 Subject: [PATCH 067/405] fixed issues related to analytics feature installation to DAS-3.1.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index afe157e51..780b1bc86 100644 --- a/pom.xml +++ b/pom.xml @@ -77,7 +77,7 @@ org.wso2.extension.siddhi.execution.json.* - org.json, + org.json;version="${orbit.version.json.range}", org.wso2.siddhi.core.*, org.wso2.siddhi.query.api.*, From f83e123843cdaa838ae9e30962367d0855ef5764 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 May 2017 13:04:42 +0530 Subject: [PATCH 068/405] [WSO2 Release] [Jenkins #2700] [Release 3.0.34] prepare release v3.0.34 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 780b1bc86..1d001f441 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.34-SNAPSHOT + 3.0.34 ../pom.xml From 4ebed665ae969b168b8db5ca6eccf2686aea5e58 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 May 2017 13:04:58 +0530 Subject: [PATCH 069/405] [WSO2 Release] [Jenkins #2700] [Release 3.0.34] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1d001f441..c58b30ded 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.34 + 3.0.35-SNAPSHOT ../pom.xml From 08e417090f826ed556fa2d1cdd260377035aa59d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 16 May 2017 14:24:33 +0530 Subject: [PATCH 070/405] [WSO2 Release] [Jenkins #2720] [Release 3.0.35] prepare release v3.0.35 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c58b30ded..10d0644e8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.35-SNAPSHOT + 3.0.35 ../pom.xml From b1c950b370b2052eff394f369a90897f5798d8a1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 16 May 2017 14:24:47 +0530 Subject: [PATCH 071/405] [WSO2 Release] [Jenkins #2720] [Release 3.0.35] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 10d0644e8..b5eb3ace9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.35 + 3.0.36-SNAPSHOT ../pom.xml From a08d0258006ea2f0824ba19ecaee3d11cc6c13aa Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 17 May 2017 16:51:01 +0530 Subject: [PATCH 072/405] [WSO2 Release] [Jenkins #2723] [Release 3.0.36] prepare release v3.0.36 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b5eb3ace9..1ef9360b3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.36-SNAPSHOT + 3.0.36 ../pom.xml From 1e36d88fe8ad04da2758804794e4f0c48823ad35 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 17 May 2017 16:51:16 +0530 Subject: [PATCH 073/405] [WSO2 Release] [Jenkins #2723] [Release 3.0.36] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1ef9360b3..f8945c007 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.36 + 3.0.37-SNAPSHOT ../pom.xml From bc3f51af428dd8620cff83d7bc3101ddc1202f02 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 30 May 2017 11:07:36 +0530 Subject: [PATCH 074/405] [WSO2 Release] [Jenkins #2741] [Release 3.0.37] prepare release v3.0.37 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f8945c007..ce41aff6f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.37-SNAPSHOT + 3.0.37 ../pom.xml From a1a9a150b4036d5fd00cf70a3a81410db6766aa5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 30 May 2017 11:07:50 +0530 Subject: [PATCH 075/405] [WSO2 Release] [Jenkins #2741] [Release 3.0.37] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ce41aff6f..38ec41cd3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.37 + 3.0.38-SNAPSHOT ../pom.xml From c20cf75fc3871c6820f943d2d2540f3f2501a5a4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 2 Jun 2017 21:21:27 +0530 Subject: [PATCH 076/405] [WSO2 Release] [Jenkins #2747] [Release 3.0.38] prepare release v3.0.38 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 38ec41cd3..5be192c47 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.38-SNAPSHOT + 3.0.38 ../pom.xml From 6f1b70236085efbf5034b2bb4d7832c3f7dcbbe2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 2 Jun 2017 21:21:42 +0530 Subject: [PATCH 077/405] [WSO2 Release] [Jenkins #2747] [Release 3.0.38] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5be192c47..d53e684f8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.38 + 3.0.39-SNAPSHOT ../pom.xml From d90d59a04ae745a647300f73e6786055465f9231 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 6 Jun 2017 12:16:26 +0530 Subject: [PATCH 078/405] [WSO2 Release] [Jenkins #2753] [Release 3.0.39] prepare release v3.0.39 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d53e684f8..b4ca96eac 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.39-SNAPSHOT + 3.0.39 ../pom.xml From ca93b567e178179ae7b814fee7489f876985a99c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 6 Jun 2017 12:16:40 +0530 Subject: [PATCH 079/405] [WSO2 Release] [Jenkins #2753] [Release 3.0.39] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b4ca96eac..d370c7f43 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.39 + 3.0.40-SNAPSHOT ../pom.xml From 44df0fd4d05028f9d171754af35655000899c982 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 7 Jun 2017 22:49:26 +0530 Subject: [PATCH 080/405] [WSO2 Release] [Jenkins #2756] [Release 3.0.40] prepare release v3.0.40 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d370c7f43..31cfb2721 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.40-SNAPSHOT + 3.0.40 ../pom.xml From 6b99e37d035cf547615a2a6e9ddc42c5dffd54a3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 7 Jun 2017 22:49:40 +0530 Subject: [PATCH 081/405] [WSO2 Release] [Jenkins #2756] [Release 3.0.40] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 31cfb2721..a1a06fa2e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.40 + 3.0.41-SNAPSHOT ../pom.xml From c3cc8042b1f306f936c1522a96cfafc4d7252e0d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 9 Jun 2017 13:55:28 +0530 Subject: [PATCH 082/405] [WSO2 Release] [Jenkins #2760] [Release 3.0.41] prepare release v3.0.41 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a1a06fa2e..fdc9acba2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.41-SNAPSHOT + 3.0.41 ../pom.xml From 6fb3c40afc2b1978b1291bc86d160e3c0b47e8dc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 9 Jun 2017 13:55:42 +0530 Subject: [PATCH 083/405] [WSO2 Release] [Jenkins #2760] [Release 3.0.41] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fdc9acba2..95b0d2180 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.41 + 3.0.42-SNAPSHOT ../pom.xml From 32b08e73208a3c526ad29801fe155a95fedcb80e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Jun 2017 16:20:03 +0530 Subject: [PATCH 084/405] [WSO2 Release] [Jenkins #2766] [Release 3.0.42] prepare release v3.0.42 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 95b0d2180..b421dfec1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.42-SNAPSHOT + 3.0.42 ../pom.xml From cdc4ebd83affcf85bacd4f5bf6addf264d3c67be Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Jun 2017 16:20:24 +0530 Subject: [PATCH 085/405] [WSO2 Release] [Jenkins #2766] [Release 3.0.42] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b421dfec1..731ff47a6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.42 + 3.0.43-SNAPSHOT ../pom.xml From ca9c701be22da6dd9af33f72e363325b6222ed0f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Jun 2017 15:32:32 +0530 Subject: [PATCH 086/405] [WSO2 Release] [Jenkins #2773] [Release 4.0.0] prepare release v4.0.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 731ff47a6..1353d82a4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.43-SNAPSHOT + 4.0.0 ../pom.xml From aded7094039770c0a92c5e7d09cf1e11608e122e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Jun 2017 15:32:45 +0530 Subject: [PATCH 087/405] [WSO2 Release] [Jenkins #2773] [Release 4.0.0] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1353d82a4..b5e4a2b09 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.0 + 4.0.1-SNAPSHOT ../pom.xml From be4ffe36aa0c001d1f8d2b532d17449465695094 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Jun 2017 16:37:06 +0530 Subject: [PATCH 088/405] [WSO2 Release] [Jenkins #2774] [Release 4.0.1] prepare release v4.0.1 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b5e4a2b09..346cf4369 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.1-SNAPSHOT + 4.0.1 ../pom.xml From f072933cbf8d5ae8818999c0455ea6f3371a84cd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Jun 2017 16:37:19 +0530 Subject: [PATCH 089/405] [WSO2 Release] [Jenkins #2774] [Release 4.0.1] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 346cf4369..b39806435 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.1 + 4.0.2-SNAPSHOT ../pom.xml From 540abee7e30a7048bbc6d6d9ff8111a06bc6b0e2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 19 Jun 2017 16:39:28 +0530 Subject: [PATCH 090/405] [WSO2 Release] [Jenkins #2781] [Release 4.0.2] prepare release v4.0.2 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b39806435..737dded14 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.2-SNAPSHOT + 4.0.2 ../pom.xml From 86a9d4751dd7b5d82a5fa37cf271858d9465c1f7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 19 Jun 2017 16:39:43 +0530 Subject: [PATCH 091/405] [WSO2 Release] [Jenkins #2781] [Release 4.0.2] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 737dded14..a24bf82ab 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.2 + 4.0.3-SNAPSHOT ../pom.xml From 2ad1eed27f93a59653f5b8409b71875ed7e676cc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 20 Jun 2017 15:49:25 +0530 Subject: [PATCH 092/405] [WSO2 Release] [Jenkins #2784] [Release 4.0.3] prepare release v4.0.3 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a24bf82ab..e3e27a704 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.3-SNAPSHOT + 4.0.3 ../pom.xml From f326d1bfea2516e306902940caf5d25a6a8bb4bf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 20 Jun 2017 15:49:39 +0530 Subject: [PATCH 093/405] [WSO2 Release] [Jenkins #2784] [Release 4.0.3] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e3e27a704..452f95632 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.3 + 4.0.4-SNAPSHOT ../pom.xml From 870792adf1bb48d8b8cfe1e251d6d58d9c73d7a8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 20 Jun 2017 18:18:59 +0530 Subject: [PATCH 094/405] [WSO2 Release] [Jenkins #2785] [Release 4.0.4] prepare release v4.0.4 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 452f95632..b4ed4c22d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.4-SNAPSHOT + 4.0.4 ../pom.xml From b3f77e90936f538469c834529f40d8b0358a37ba Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 20 Jun 2017 18:19:13 +0530 Subject: [PATCH 095/405] [WSO2 Release] [Jenkins #2785] [Release 4.0.4] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b4ed4c22d..6429bada7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.4 + 4.0.5-SNAPSHOT ../pom.xml From 6e8e060422f8c9e9fd8e1ddc3933cfb5499141ce Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 22 Jun 2017 21:03:24 +0530 Subject: [PATCH 096/405] [WSO2 Release] [Jenkins #2792] [Release 4.0.5] prepare release v4.0.5 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6429bada7..2ba7d3f6b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.5-SNAPSHOT + 4.0.5 ../pom.xml From 83230219d7595fe101e3e274949891a6224663df Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 22 Jun 2017 21:03:37 +0530 Subject: [PATCH 097/405] [WSO2 Release] [Jenkins #2792] [Release 4.0.5] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2ba7d3f6b..0d8d747cd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.5 + 4.0.6-SNAPSHOT ../pom.xml From f5ac48100fb4f5a5e64f9fb36d83fe1867e8f58c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 23 Jun 2017 08:14:07 +0530 Subject: [PATCH 098/405] [WSO2 Release] [Jenkins #2794] [Release 4.0.6] prepare release v4.0.6 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0d8d747cd..a24b95f66 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.6-SNAPSHOT + 4.0.6 ../pom.xml From 75696a538afa9d0115aed8898354c9dc5eee5e04 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 23 Jun 2017 08:14:21 +0530 Subject: [PATCH 099/405] [WSO2 Release] [Jenkins #2794] [Release 4.0.6] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a24b95f66..5b9d7f671 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.6 + 4.0.7-SNAPSHOT ../pom.xml From 144d06e551c3c90554fabfb1a0a94bd72a257811 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 23 Jun 2017 17:54:43 +0530 Subject: [PATCH 100/405] [WSO2 Release] [Jenkins #2796] [Release 4.0.7] prepare release v4.0.7 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5b9d7f671..35385ba41 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.7-SNAPSHOT + 4.0.7 ../pom.xml From 35f8c7c5b3b1a7a0ae96391cf36c60ffeeae2291 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 23 Jun 2017 17:54:56 +0530 Subject: [PATCH 101/405] [WSO2 Release] [Jenkins #2796] [Release 4.0.7] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 35385ba41..fbcc42788 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.7 + 4.0.8-SNAPSHOT ../pom.xml From 602482a05c17b2c6943f62b41a1d22911727b507 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 23 Jun 2017 21:01:42 +0530 Subject: [PATCH 102/405] [maven-release-plugin]prepare release v4.0.8 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fbcc42788..9418020df 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.8-SNAPSHOT + 4.0.8 ../pom.xml From c34b334127b7765a95792cf4f8cc1a39cb0147ff Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 23 Jun 2017 21:01:55 +0530 Subject: [PATCH 103/405] [maven-release-plugin]prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9418020df..7b5fb4776 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.8 + 4.0.9-SNAPSHOT ../pom.xml From 2c5504f05403d6b3f95d2b5aaf47039d9084ff51 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 27 Jun 2017 16:11:35 +0530 Subject: [PATCH 104/405] [WSO2 Release] [Jenkins #2805] [Release 4.0.9] prepare release v4.0.9 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7b5fb4776..b7f7d2c24 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.9-SNAPSHOT + 4.0.9 ../pom.xml From df805b113de0c882ef7a61d302ab217c6d76713c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 27 Jun 2017 16:11:49 +0530 Subject: [PATCH 105/405] [WSO2 Release] [Jenkins #2805] [Release 4.0.9] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b7f7d2c24..657854e09 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.9 + 4.0.10-SNAPSHOT ../pom.xml From 4d9c8bfa50f9dc1df081f2273b2f8cc75240dbf6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 27 Jun 2017 18:27:54 +0530 Subject: [PATCH 106/405] [WSO2 Release] [Jenkins #2807] [Release 4.0.10] prepare release v4.0.10 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 657854e09..6172bbe65 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.10-SNAPSHOT + 4.0.10 ../pom.xml From ad4059cc6f0301c0a557fb5fe660be7b75d0eefd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 27 Jun 2017 18:28:08 +0530 Subject: [PATCH 107/405] [WSO2 Release] [Jenkins #2807] [Release 4.0.10] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6172bbe65..19f429102 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.10 + 4.0.11-SNAPSHOT ../pom.xml From 66f284f8f35ae4256930c5dd3683cb72962da2c9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Jun 2017 14:24:40 +0530 Subject: [PATCH 108/405] [WSO2 Release] [Jenkins #2810] [Release 4.0.11] prepare release v4.0.11 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 19f429102..1786e4155 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.11-SNAPSHOT + 4.0.11 ../pom.xml From 908ffe89401155834b2db66472459e024df4bb97 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Jun 2017 14:24:55 +0530 Subject: [PATCH 109/405] [WSO2 Release] [Jenkins #2810] [Release 4.0.11] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1786e4155..830305096 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.11 + 4.0.12-SNAPSHOT ../pom.xml From f59de19c1aa69fcc887d69187eccba89ad5ff447 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Jun 2017 15:45:56 +0530 Subject: [PATCH 110/405] [WSO2 Release] [Jenkins #2812] [Release 4.0.12] prepare release v4.0.12 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 830305096..45752d8a4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.12-SNAPSHOT + 4.0.12 ../pom.xml From 7f9d2c5506da5046f78b7a2c55aea7350e9528d4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Jun 2017 15:46:09 +0530 Subject: [PATCH 111/405] [WSO2 Release] [Jenkins #2812] [Release 4.0.12] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 45752d8a4..7d5b02ec6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.12 + 4.0.13-SNAPSHOT ../pom.xml From ac53bd38e88a3b3f47b4ad9ea4b3d173222b9b06 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 29 Jun 2017 09:50:39 +0530 Subject: [PATCH 112/405] [WSO2 Release] [Jenkins #2814] [Release 4.0.13] prepare release v4.0.13 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7d5b02ec6..bd8d85cc9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.13-SNAPSHOT + 4.0.13 ../pom.xml From 33e16c577b2273c484972c4f5921b50ced6360ec Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 29 Jun 2017 09:50:53 +0530 Subject: [PATCH 113/405] [WSO2 Release] [Jenkins #2814] [Release 4.0.13] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bd8d85cc9..f26e20edb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.13 + 4.0.14-SNAPSHOT ../pom.xml From 38c360cb0784d55df7f1a475012cd57b17bfeb80 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 30 Jun 2017 14:35:26 +0530 Subject: [PATCH 114/405] [WSO2 Release] [Jenkins #2817] [Release 4.0.14] prepare release v4.0.14 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f26e20edb..0e84e57ab 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.14-SNAPSHOT + 4.0.14 ../pom.xml From 3066b25ea8afd2929bf8f5499726e6bc7bb136ad Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 30 Jun 2017 14:35:40 +0530 Subject: [PATCH 115/405] [WSO2 Release] [Jenkins #2817] [Release 4.0.14] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0e84e57ab..7dcb984b2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.14 + 4.0.15-SNAPSHOT ../pom.xml From c5548b471e234850f56a50331f7d39222e961304 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 30 Jun 2017 20:40:12 +0530 Subject: [PATCH 116/405] [WSO2 Release] [Jenkins #2819] [Release 4.0.15] prepare release v4.0.15 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7dcb984b2..3dbba1658 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.15-SNAPSHOT + 4.0.15 ../pom.xml From 54090ebf09a052ddf704e465a84473ec89c8c364 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 30 Jun 2017 20:40:26 +0530 Subject: [PATCH 117/405] [WSO2 Release] [Jenkins #2819] [Release 4.0.15] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3dbba1658..f358e612a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.15 + 4.0.16-SNAPSHOT ../pom.xml From 0dc11428575b09811f34fd6c5499c4c4da39e705 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 1 Jul 2017 11:59:26 +0530 Subject: [PATCH 118/405] [WSO2 Release] [Jenkins #2821] [Release 4.0.16] prepare release v4.0.16 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f358e612a..2fd99edde 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.16-SNAPSHOT + 4.0.16 ../pom.xml From 7f4edb245ee6b8fd163649f1f24dd230dbeacf4a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 1 Jul 2017 11:59:40 +0530 Subject: [PATCH 119/405] [WSO2 Release] [Jenkins #2821] [Release 4.0.16] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2fd99edde..a1ab145c1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.16 + 4.0.17-SNAPSHOT ../pom.xml From 9c374eceb3ad6e080f7c9696a61273e05e125176 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 4 Jul 2017 16:36:57 +0530 Subject: [PATCH 120/405] [WSO2 Release] [Jenkins #2827] [Release 4.0.17] prepare release v4.0.17 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a1ab145c1..1a9cc6903 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.17-SNAPSHOT + 4.0.17 ../pom.xml From 23f4367d5853deeefdfdf4efe86d8dcadded1d50 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 4 Jul 2017 16:37:12 +0530 Subject: [PATCH 121/405] [WSO2 Release] [Jenkins #2827] [Release 4.0.17] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1a9cc6903..9e25d0374 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.17 + 4.0.18-SNAPSHOT ../pom.xml From 923cdf75b3d197dc6643f108e0a9c503ebfd5a23 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 5 Jul 2017 15:33:09 +0530 Subject: [PATCH 122/405] [WSO2 Release] [Jenkins #2830] [Release 4.0.18] prepare release v4.0.18 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9e25d0374..b490bd358 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.18-SNAPSHOT + 4.0.18 ../pom.xml From 3ccbecbe889ef1b45aef2c84817876504d31397f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 5 Jul 2017 15:33:23 +0530 Subject: [PATCH 123/405] [WSO2 Release] [Jenkins #2830] [Release 4.0.18] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b490bd358..105cb77d0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.18 + 4.0.19-SNAPSHOT ../pom.xml From f6b88cadfb466daad8e703fa883aaac1d3f90899 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 5 Jul 2017 23:48:12 +0530 Subject: [PATCH 124/405] [WSO2 Release] [Jenkins #2832] [Release 4.0.19] prepare release v4.0.19 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 105cb77d0..cf368776e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.19-SNAPSHOT + 4.0.19 ../pom.xml From ef7bae42c5a3fa3aaf5a3e593d6962d2b6958687 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 5 Jul 2017 23:48:26 +0530 Subject: [PATCH 125/405] [WSO2 Release] [Jenkins #2832] [Release 4.0.19] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cf368776e..0196fce29 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.19 + 4.0.20-SNAPSHOT ../pom.xml From 913e751a6b52f038f67e09717681b0cb028be2dd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 6 Jul 2017 15:27:41 +0530 Subject: [PATCH 126/405] [WSO2 Release] [Jenkins #2835] [Release 4.0.20] prepare release v4.0.20 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0196fce29..8420e83cc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.20-SNAPSHOT + 4.0.20 ../pom.xml From 8f6ba7b355d8cebcd0a9bf806527184ee2f05462 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 6 Jul 2017 15:27:54 +0530 Subject: [PATCH 127/405] [WSO2 Release] [Jenkins #2835] [Release 4.0.20] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8420e83cc..6b01cc779 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.20 + 4.0.21-SNAPSHOT ../pom.xml From 5d4cc811e01b5476700a61d7ef5802e0ff77deae Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 6 Jul 2017 16:55:07 +0530 Subject: [PATCH 128/405] [WSO2 Release] [Jenkins #2836] [Release 4.0.21] prepare release v4.0.21 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6b01cc779..0b303cd93 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.21-SNAPSHOT + 4.0.21 ../pom.xml From 68a6fce70f3b95c690ae707e6a2ab1a6ad443368 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 6 Jul 2017 16:55:21 +0530 Subject: [PATCH 129/405] [WSO2 Release] [Jenkins #2836] [Release 4.0.21] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0b303cd93..c4bb9a167 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.21 + 4.0.22-SNAPSHOT ../pom.xml From 5a991ec128bb099bb4ddbdfafb4e404093ae9652 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 7 Jul 2017 00:11:59 +0530 Subject: [PATCH 130/405] [WSO2 Release] [Jenkins #2838] [Release 4.0.22] prepare release v4.0.22 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c4bb9a167..69118dd68 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.22-SNAPSHOT + 4.0.22 ../pom.xml From 3f2ae9a805ec078ee7bfadd52434a158ac083d46 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 7 Jul 2017 00:12:14 +0530 Subject: [PATCH 131/405] [WSO2 Release] [Jenkins #2838] [Release 4.0.22] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 69118dd68..54acb6f4a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.22 + 4.0.23-SNAPSHOT ../pom.xml From cd637d90677485db419d7e631003a5b9b603e9cf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 7 Jul 2017 19:04:36 +0530 Subject: [PATCH 132/405] [WSO2 Release] [Jenkins #2840] [Release 4.0.23] prepare release v4.0.23 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 54acb6f4a..7c6398692 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.23-SNAPSHOT + 4.0.23 ../pom.xml From 175ca8bc67793641f42c796dd7746b3d5e290ef4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 7 Jul 2017 19:04:50 +0530 Subject: [PATCH 133/405] [WSO2 Release] [Jenkins #2840] [Release 4.0.23] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7c6398692..100f316c4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.23 + 4.0.24-SNAPSHOT ../pom.xml From 8b84abd5f28353f565bcd376bbc5cabdbcc8cfcd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 8 Jul 2017 05:45:47 +0530 Subject: [PATCH 134/405] [maven-release-plugin]prepare release v4.0.24 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 100f316c4..60faca684 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.24-SNAPSHOT + 4.0.24 ../pom.xml From ad05a33e924da6bf42108b534fcfcfcf21a0cf81 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 8 Jul 2017 05:46:01 +0530 Subject: [PATCH 135/405] [maven-release-plugin]prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 60faca684..24fe59ae1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.24 + 4.0.25-SNAPSHOT ../pom.xml From 89cc68f09b2e7adec9343be3437f4104eb5eb59b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 9 Jul 2017 09:19:11 +0530 Subject: [PATCH 136/405] [WSO2 Release] [Jenkins #2845] [Release 4.0.25] prepare release v4.0.25 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 24fe59ae1..6bcb49d1f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.25-SNAPSHOT + 4.0.25 ../pom.xml From d2df189466b841247d3669c602c0f90c1585c248 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 9 Jul 2017 09:19:25 +0530 Subject: [PATCH 137/405] [WSO2 Release] [Jenkins #2845] [Release 4.0.25] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6bcb49d1f..f1e632922 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.25 + 4.0.26-SNAPSHOT ../pom.xml From 1dfe58f88b56a63df1269c7b86dc86178dc74ade Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 10 Jul 2017 18:00:32 +0530 Subject: [PATCH 138/405] [WSO2 Release] [Jenkins #2848] [Release 4.0.26] prepare release v4.0.26 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f1e632922..4b4e0d99b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.26-SNAPSHOT + 4.0.26 ../pom.xml From e71f7be686ef131b53b3105e5cb60e74b7f4118e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 10 Jul 2017 18:00:45 +0530 Subject: [PATCH 139/405] [WSO2 Release] [Jenkins #2848] [Release 4.0.26] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4b4e0d99b..bf34e88c1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.26 + 4.0.27-SNAPSHOT ../pom.xml From d7706cec894d986e52dcdacd0a377641b6cf3666 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 11 Jul 2017 14:42:36 +0530 Subject: [PATCH 140/405] [WSO2 Release] [Jenkins #2851] [Release 4.0.27] prepare release v4.0.27 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bf34e88c1..3a6389ba8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.27-SNAPSHOT + 4.0.27 ../pom.xml From 4dc53b81e160e6492bc7d91a0a60a1a9e4a68d1e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 11 Jul 2017 14:42:52 +0530 Subject: [PATCH 141/405] [WSO2 Release] [Jenkins #2851] [Release 4.0.27] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3a6389ba8..d0ce4fb23 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.27 + 4.0.28-SNAPSHOT ../pom.xml From b84599ef1e838acebeea64bf80d4bac62e13e3e9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 11 Jul 2017 18:39:18 +0530 Subject: [PATCH 142/405] [WSO2 Release] [Jenkins #2853] [Release 4.0.28] prepare release v4.0.28 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d0ce4fb23..2551cd12a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.28-SNAPSHOT + 4.0.28 ../pom.xml From 37832143d65a9f6be3f5c9ad42fa7b0c584f0856 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 11 Jul 2017 18:39:32 +0530 Subject: [PATCH 143/405] [WSO2 Release] [Jenkins #2853] [Release 4.0.28] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2551cd12a..ee463c842 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.28 + 4.0.29-SNAPSHOT ../pom.xml From 4c44507947972e862922747a584161d328107d5e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 13 Jul 2017 16:26:00 +0530 Subject: [PATCH 144/405] [WSO2 Release] [Jenkins #2857] [Release 4.0.29] prepare release v4.0.29 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ee463c842..2a5bb44bc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.29-SNAPSHOT + 4.0.29 ../pom.xml From 5e789ef785fad0df9ad1f10e1d8fac9da40ec3a8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 13 Jul 2017 16:26:14 +0530 Subject: [PATCH 145/405] [WSO2 Release] [Jenkins #2857] [Release 4.0.29] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2a5bb44bc..4d058ee6e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.29 + 4.0.30-SNAPSHOT ../pom.xml From 9ecdf0ef4b1a43690690c85252ea2aadf8a57a36 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 14 Jul 2017 13:10:02 +0530 Subject: [PATCH 146/405] [WSO2 Release] [Jenkins #2860] [Release 4.0.30] prepare release v4.0.30 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4d058ee6e..f8250dd1e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.30-SNAPSHOT + 4.0.30 ../pom.xml From c2977b6c2eb15bb89e94507bb5399a399324cf7e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 14 Jul 2017 13:10:16 +0530 Subject: [PATCH 147/405] [WSO2 Release] [Jenkins #2860] [Release 4.0.30] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f8250dd1e..f7b997f79 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.30 + 4.0.31-SNAPSHOT ../pom.xml From 31e7545634e8e8b1d994edb4ff39c5fc3d109cbc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 15 Jul 2017 13:12:21 +0530 Subject: [PATCH 148/405] [WSO2 Release] [Jenkins #2862] [Release 4.0.31] prepare release v4.0.31 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f7b997f79..c204b9a52 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.31-SNAPSHOT + 4.0.31 ../pom.xml From 143c76968355614d6604edcc2ccbde6fef94c10b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 15 Jul 2017 13:12:35 +0530 Subject: [PATCH 149/405] [WSO2 Release] [Jenkins #2862] [Release 4.0.31] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c204b9a52..4bcdbaa53 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.31 + 4.0.32-SNAPSHOT ../pom.xml From 592cf7fe25e9c964116568bfae56d402201a4ff2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 16 Jul 2017 11:36:25 +0530 Subject: [PATCH 150/405] [WSO2 Release] [Jenkins #2864] [Release 4.0.32] prepare release v4.0.32 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4bcdbaa53..64fccde2c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.32-SNAPSHOT + 4.0.32 ../pom.xml From 7f3f15c5de3d93fa5b32ce980855e67904352840 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 16 Jul 2017 11:36:38 +0530 Subject: [PATCH 151/405] [WSO2 Release] [Jenkins #2864] [Release 4.0.32] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 64fccde2c..1a75f1817 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.32 + 4.0.33-SNAPSHOT ../pom.xml From 96d39edb106efe16ed6784243725020c82bfd043 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 16 Jul 2017 22:01:31 +0530 Subject: [PATCH 152/405] [WSO2 Release] [Jenkins #2866] [Release 4.0.33] prepare release v4.0.33 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1a75f1817..eecb185c0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.33-SNAPSHOT + 4.0.33 ../pom.xml From 548797901b54616b44f3db1d3d8b8690e912861e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 16 Jul 2017 22:01:45 +0530 Subject: [PATCH 153/405] [WSO2 Release] [Jenkins #2866] [Release 4.0.33] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index eecb185c0..d76fd910b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.33 + 4.0.34-SNAPSHOT ../pom.xml From 2f7b5cdece618e2f2608a96b4235f00144f6f040 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 17 Jul 2017 00:02:15 +0530 Subject: [PATCH 154/405] [WSO2 Release] [Jenkins #2868] [Release 4.0.34] prepare release v4.0.34 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d76fd910b..1c39e0fab 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.34-SNAPSHOT + 4.0.34 ../pom.xml From c6c2847b9d8f2aae78b9e076b1b606f2e92f8428 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 17 Jul 2017 00:02:28 +0530 Subject: [PATCH 155/405] [WSO2 Release] [Jenkins #2868] [Release 4.0.34] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1c39e0fab..497a12044 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.34 + 4.0.35-SNAPSHOT ../pom.xml From d69c71c0924af8e6e2ec4002164a2f8643ffbd5e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 19 Jul 2017 14:02:04 +0000 Subject: [PATCH 156/405] [WSO2 Release] [Jenkins #2875] [Release 4.0.35] prepare release v4.0.35 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 497a12044..ac5f56afc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.35-SNAPSHOT + 4.0.35 ../pom.xml From 7c6a8172913e635cac444b1912f6d0171f194402 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 19 Jul 2017 14:02:17 +0000 Subject: [PATCH 157/405] [WSO2 Release] [Jenkins #2875] [Release 4.0.35] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ac5f56afc..d3b8e30cd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.35 + 4.0.36-SNAPSHOT ../pom.xml From a711ac75a90295e65f0c6aa8989536040dd1fca9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 20 Jul 2017 18:54:51 +0530 Subject: [PATCH 158/405] [WSO2 Release] [Jenkins #2879] [Release 4.0.36] prepare release v4.0.36 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d3b8e30cd..f5df478b5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.36-SNAPSHOT + 4.0.36 ../pom.xml From 410f9e744f92010f865bead091bf8efd130b8a97 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 20 Jul 2017 18:55:02 +0530 Subject: [PATCH 159/405] [WSO2 Release] [Jenkins #2879] [Release 4.0.36] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f5df478b5..9805ec1e5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.36 + 4.0.37-SNAPSHOT ../pom.xml From 2c0a2697bd3a8c3589311d4719450b6bb719433f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 20 Jul 2017 20:42:11 +0530 Subject: [PATCH 160/405] [WSO2 Release] [Jenkins #2880] [Release 4.0.37] prepare release v4.0.37 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9805ec1e5..0c4e90684 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.37-SNAPSHOT + 4.0.37 ../pom.xml From 1ff3c3bb2950cbdc21cef9f0ba9e98c3787ad07d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 20 Jul 2017 20:42:25 +0530 Subject: [PATCH 161/405] [WSO2 Release] [Jenkins #2880] [Release 4.0.37] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0c4e90684..aca67f7a7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.37 + 4.0.38-SNAPSHOT ../pom.xml From 72486cab1dd838617f11112271213cae40e16853 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 21 Jul 2017 14:27:57 +0530 Subject: [PATCH 162/405] [WSO2 Release] [Jenkins #2883] [Release 4.0.38] prepare release v4.0.38 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aca67f7a7..cbe335f30 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.38-SNAPSHOT + 4.0.38 ../pom.xml From 25edbb1ce9746d0282a8b897b88a6f5972706210 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 21 Jul 2017 14:28:06 +0530 Subject: [PATCH 163/405] [WSO2 Release] [Jenkins #2883] [Release 4.0.38] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cbe335f30..32bbe933b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.38 + 4.0.39-SNAPSHOT ../pom.xml From 07ec91048f61564236342a4a72749b47d919b784 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 23 Jul 2017 21:18:37 +0530 Subject: [PATCH 164/405] [WSO2 Release] [Jenkins #2887] [Release 4.0.39] prepare release v4.0.39 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 32bbe933b..2fd04b991 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.39-SNAPSHOT + 4.0.39 ../pom.xml From fa5fd47f9cd732932881cdc2c4ef11ae1d3d315d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 23 Jul 2017 21:18:50 +0530 Subject: [PATCH 165/405] [WSO2 Release] [Jenkins #2887] [Release 4.0.39] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2fd04b991..c69724252 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.39 + 4.0.40-SNAPSHOT ../pom.xml From 223e97b300ef688dbe822c968cb3b70ab695484a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 25 Jul 2017 21:12:16 +0530 Subject: [PATCH 166/405] [WSO2 Release] [Jenkins #2891] [Release 4.0.40] prepare release v4.0.40 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c69724252..2b4d862d2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.40-SNAPSHOT + 4.0.40 ../pom.xml From b2e3ad0716202cfb5286defa76280ee27a81aff7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 25 Jul 2017 21:12:31 +0530 Subject: [PATCH 167/405] [WSO2 Release] [Jenkins #2891] [Release 4.0.40] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2b4d862d2..c4386fce1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.40 + 4.0.41-SNAPSHOT ../pom.xml From 2666c752a6230c4d5fa7c6e7e02763ac6b411154 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 26 Jul 2017 21:10:47 +0530 Subject: [PATCH 168/405] [maven-release-plugin]prepare release v4.0.41 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c4386fce1..10706cdae 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.41-SNAPSHOT + 4.0.41 ../pom.xml From 23a2ec6fb289a22e7dd1a99a6c1030a3f04c2802 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 26 Jul 2017 21:11:04 +0530 Subject: [PATCH 169/405] [maven-release-plugin]prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 10706cdae..0c838e93b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.41 + 4.0.42-SNAPSHOT ../pom.xml From 1cae2638f10dab200fda09a5c75e01af939a389a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 31 Jul 2017 08:50:39 +0000 Subject: [PATCH 170/405] [WSO2 Release] [Jenkins #2903] [Release 4.0.42] prepare release v4.0.42 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0c838e93b..11b4f908c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.42-SNAPSHOT + 4.0.42 ../pom.xml From 860c42c7386d6a983c9b089d0d19ace60d8bf643 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 31 Jul 2017 08:50:53 +0000 Subject: [PATCH 171/405] [WSO2 Release] [Jenkins #2903] [Release 4.0.42] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 11b4f908c..b6da3bc59 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.42 + 4.0.43-SNAPSHOT ../pom.xml From 53a26bf6b4e83ff1e571ca6310a55d45a8165d12 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 31 Jul 2017 15:07:35 +0000 Subject: [PATCH 172/405] [WSO2 Release] [Jenkins #2906] [Release 4.0.43] prepare release v4.0.43 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b6da3bc59..a2b5386b4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.43-SNAPSHOT + 4.0.43 ../pom.xml From b34a0ba9c95da40260aa12f515c0c591eae954d5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 31 Jul 2017 15:07:49 +0000 Subject: [PATCH 173/405] [WSO2 Release] [Jenkins #2906] [Release 4.0.43] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a2b5386b4..c00e6b776 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.43 + 4.0.44-SNAPSHOT ../pom.xml From c6c5534f314ccf11bb47d5f32ce8a4cc3d4f898d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 1 Aug 2017 17:30:44 +0530 Subject: [PATCH 174/405] [WSO2 Release] [Jenkins #2909] [Release 4.0.44] prepare release v4.0.44 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c00e6b776..71f8d0afb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.44-SNAPSHOT + 4.0.44 ../pom.xml From 0892d77b08d952b8880c4d7204a67992ec894811 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 1 Aug 2017 17:30:59 +0530 Subject: [PATCH 175/405] [WSO2 Release] [Jenkins #2909] [Release 4.0.44] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 71f8d0afb..385f836e0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.44 + 4.0.45-SNAPSHOT ../pom.xml From b1ca6e74c583f1d482823c1408a2798ca0181408 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 2 Aug 2017 13:30:46 +0530 Subject: [PATCH 176/405] [WSO2 Release] [Jenkins #2912] [Release 4.0.45] prepare release v4.0.45 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 385f836e0..ea1113455 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.45-SNAPSHOT + 4.0.45 ../pom.xml From cc1f13b0d1cbff872fb44e744d2cd10c0ffff1fb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 2 Aug 2017 13:30:56 +0530 Subject: [PATCH 177/405] [WSO2 Release] [Jenkins #2912] [Release 4.0.45] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ea1113455..9f13815ce 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.45 + 4.0.46-SNAPSHOT ../pom.xml From 3ca7e6b5d8d8613d85290b390f26b525b79458cf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 2 Aug 2017 15:26:25 +0530 Subject: [PATCH 178/405] [WSO2 Release] [Jenkins #2913] [Release 4.0.46] prepare release v4.0.46 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9f13815ce..96ea5ff6f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.46-SNAPSHOT + 4.0.46 ../pom.xml From 53a106d18a6db9575d93cf4bf19847c77c555db0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 2 Aug 2017 15:26:35 +0530 Subject: [PATCH 179/405] [WSO2 Release] [Jenkins #2913] [Release 4.0.46] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 96ea5ff6f..b1f2097a5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.46 + 4.0.47-SNAPSHOT ../pom.xml From fc1273d9f6f9912952cffb33fc4d449d254572bc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 2 Aug 2017 17:48:43 +0000 Subject: [PATCH 180/405] [WSO2 Release] [Jenkins #2915] [Release 4.0.47] prepare release v4.0.47 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b1f2097a5..72f6e2ca3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.47-SNAPSHOT + 4.0.47 ../pom.xml From fe3bdb34e80c76976076cc828137d6ec22d50559 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 2 Aug 2017 17:50:09 +0000 Subject: [PATCH 181/405] [WSO2 Release] [Jenkins #2915] [Release 4.0.47] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 72f6e2ca3..a55b4756c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.47 + 4.0.48-SNAPSHOT ../pom.xml From 572c4405b782c5a1d66e7ef1a7e526de6d97bcf4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 3 Aug 2017 15:36:36 +0000 Subject: [PATCH 182/405] [WSO2 Release] [Jenkins #2918] [Release 4.0.48] prepare release v4.0.48 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a55b4756c..9e0b92744 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.48-SNAPSHOT + 4.0.48 ../pom.xml From e8cfbd06fc5ab3927559c50cb9a531d4a1910fd0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 3 Aug 2017 15:36:55 +0000 Subject: [PATCH 183/405] [WSO2 Release] [Jenkins #2918] [Release 4.0.48] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9e0b92744..fc937de75 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.48 + 4.0.49-SNAPSHOT ../pom.xml From 5806ec519e8b0ff7e493c5ebd2c15bf01d1a7ce8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 5 Aug 2017 09:31:35 +0000 Subject: [PATCH 184/405] [WSO2 Release] [Jenkins #2922] [Release 4.0.49] prepare release v4.0.49 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fc937de75..aeb9575a8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.49-SNAPSHOT + 4.0.49 ../pom.xml From e7dc0a60dd8fdaf567244df521ba36f66363aa9c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 5 Aug 2017 09:31:52 +0000 Subject: [PATCH 185/405] [WSO2 Release] [Jenkins #2922] [Release 4.0.49] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aeb9575a8..484ad1ba1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.49 + 4.0.50-SNAPSHOT ../pom.xml From 8311fd8c74bee580d6e9fccef556dd2deae32ded Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 7 Aug 2017 17:33:47 +0000 Subject: [PATCH 186/405] [WSO2 Release] [Jenkins #2926] [Release 4.0.50] prepare release v4.0.50 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 484ad1ba1..ecba4e11f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.50-SNAPSHOT + 4.0.50 ../pom.xml From 8f456f764c5c51ffcf168c0d765abf27c6b8118d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 7 Aug 2017 17:35:11 +0000 Subject: [PATCH 187/405] [WSO2 Release] [Jenkins #2926] [Release 4.0.50] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ecba4e11f..0adc4a7cd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.50 + 4.0.51-SNAPSHOT ../pom.xml From dd06715487e75546bf7e7197baa372e700f84b00 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 8 Aug 2017 00:28:17 +0530 Subject: [PATCH 188/405] [WSO2 Release] [Jenkins #2927] [Release 4.0.51] prepare release v4.0.51 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0adc4a7cd..9f5ad2cf3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.51-SNAPSHOT + 4.0.51 ../pom.xml From 2c6df46e28750bfc36a70d530c38a841d487b685 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 8 Aug 2017 00:28:33 +0530 Subject: [PATCH 189/405] [WSO2 Release] [Jenkins #2927] [Release 4.0.51] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9f5ad2cf3..ebc4d5e8f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.51 + 4.0.52-SNAPSHOT ../pom.xml From f6afb8af1abeebba6dbe2e1516bf3607f3d5c459 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 8 Aug 2017 04:00:46 +0530 Subject: [PATCH 190/405] [WSO2 Release] [Jenkins #2928] [Release 4.0.52] prepare release v4.0.52 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ebc4d5e8f..0fbd3f146 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.52-SNAPSHOT + 4.0.52 ../pom.xml From 0082cece1ae9c6b2ea0ed8d278ea47a1ff1615c0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 8 Aug 2017 04:00:56 +0530 Subject: [PATCH 191/405] [WSO2 Release] [Jenkins #2928] [Release 4.0.52] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0fbd3f146..2017a19a1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.52 + 4.0.53-SNAPSHOT ../pom.xml From f496da5d1445aa7f5b4e1db16415d52b3d9ccf49 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 9 Aug 2017 11:45:00 +0530 Subject: [PATCH 192/405] [WSO2 Release] [Jenkins #2935] [Release 4.0.53] prepare release v4.0.53 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2017a19a1..2212552ce 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.53-SNAPSHOT + 4.0.53 ../pom.xml From 0165a3dd5ec2aa408f866c497b1072cc862aaa35 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 9 Aug 2017 11:45:11 +0530 Subject: [PATCH 193/405] [WSO2 Release] [Jenkins #2935] [Release 4.0.53] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2212552ce..faa6be9e8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.53 + 4.0.54-SNAPSHOT ../pom.xml From 96fd7f6020cdf785e45383fcb33196386844ba23 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 10 Aug 2017 14:14:47 +0000 Subject: [PATCH 194/405] [maven-release-plugin]prepare release v4.0.54 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index faa6be9e8..a43bee63e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.54-SNAPSHOT + 4.0.54 ../pom.xml From 5c19678a4318967e0b774c2ddd77e25a8d53f927 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 10 Aug 2017 14:15:04 +0000 Subject: [PATCH 195/405] [maven-release-plugin]prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a43bee63e..5c3bd49e2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.54 + 4.0.55-SNAPSHOT ../pom.xml From 90e3bb7969112b1d80923a15406592904de18859 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 11 Aug 2017 07:51:08 +0000 Subject: [PATCH 196/405] [WSO2 Release] [Jenkins #2943] [Release 4.0.55] prepare release v4.0.55 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5c3bd49e2..810f2967e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.55-SNAPSHOT + 4.0.55 ../pom.xml From a419c0c88e1f7908cf7ab43d50617c73610b5d4b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 11 Aug 2017 07:51:22 +0000 Subject: [PATCH 197/405] [WSO2 Release] [Jenkins #2943] [Release 4.0.55] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 810f2967e..b0b9269f6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.55 + 4.0.56-SNAPSHOT ../pom.xml From fa2f14e129df401b1e82bb6d24f2bcb8a7367aa6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 22 Aug 2017 05:35:35 +0000 Subject: [PATCH 198/405] [WSO2 Release] [Jenkins #2956] [Release 4.0.56] prepare release v4.0.56 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b0b9269f6..0c0bdf4f9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.56-SNAPSHOT + 4.0.56 ../pom.xml From 4e6b7baa8da9f0535003ea757658c856ead6f6af Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 22 Aug 2017 05:35:49 +0000 Subject: [PATCH 199/405] [WSO2 Release] [Jenkins #2956] [Release 4.0.56] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0c0bdf4f9..2beb80293 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.56 + 4.0.57-SNAPSHOT ../pom.xml From 61c7113f19bab234fcac317d0e0fcecad5755113 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 22 Aug 2017 11:32:54 +0000 Subject: [PATCH 200/405] [WSO2 Release] [Jenkins #2958] [Release 4.0.57] prepare release v4.0.57 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2beb80293..9f00298c6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.57-SNAPSHOT + 4.0.57 ../pom.xml From 3e8030bec45f644b9b63225420f54ce078b169ec Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 22 Aug 2017 11:33:09 +0000 Subject: [PATCH 201/405] [WSO2 Release] [Jenkins #2958] [Release 4.0.57] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9f00298c6..7e520d8aa 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.57 + 4.0.58-SNAPSHOT ../pom.xml From 0323388db116001dc7950785a284b0176cc78c36 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 22 Aug 2017 18:38:19 +0000 Subject: [PATCH 202/405] [WSO2 Release] [Jenkins #2960] [Release 4.0.58] prepare release v4.0.58 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7e520d8aa..aec0b5b42 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.58-SNAPSHOT + 4.0.58 ../pom.xml From 34b7957fc539a6c0d20ce2b61706f9f072fda6e9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 22 Aug 2017 18:38:33 +0000 Subject: [PATCH 203/405] [WSO2 Release] [Jenkins #2960] [Release 4.0.58] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aec0b5b42..5e3131ca5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.58 + 4.0.59-SNAPSHOT ../pom.xml From cf2f115d0fd03a5b1b6ddfb5334e58d309708a67 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 23 Aug 2017 12:12:47 +0000 Subject: [PATCH 204/405] [WSO2 Release] [Jenkins #2963] [Release 4.0.59] prepare release v4.0.59 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5e3131ca5..175b658a6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.59-SNAPSHOT + 4.0.59 ../pom.xml From f4ff3dc277d146fe21d606ae509a7ccd8bce1401 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 23 Aug 2017 12:13:02 +0000 Subject: [PATCH 205/405] [WSO2 Release] [Jenkins #2963] [Release 4.0.59] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 175b658a6..d85e19665 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.59 + 4.0.60-SNAPSHOT ../pom.xml From 445a059725ce4b7fdeed1f990f63c950bd7009b9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 24 Aug 2017 10:04:52 +0000 Subject: [PATCH 206/405] [WSO2 Release] [Jenkins #2966] [Release 4.0.60] prepare release v4.0.60 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d85e19665..e6879ab26 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.60-SNAPSHOT + 4.0.60 ../pom.xml From 0ba2ef5201018dec14ec23ab2b2e002d3a343dbf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 24 Aug 2017 10:05:06 +0000 Subject: [PATCH 207/405] [WSO2 Release] [Jenkins #2966] [Release 4.0.60] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e6879ab26..ed7b70ca3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.60 + 4.0.61-SNAPSHOT ../pom.xml From 4e6d05aa124331ba7f12cf26840a12713a833b82 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 28 Aug 2017 08:56:42 +0000 Subject: [PATCH 208/405] [WSO2 Release] [Jenkins #2972] [Release 4.0.61] prepare release v4.0.61 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ed7b70ca3..393398bd5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.61-SNAPSHOT + 4.0.61 ../pom.xml From f236a65be2a0cb7a721a89b5f0d510dafe2cf98a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 28 Aug 2017 08:56:56 +0000 Subject: [PATCH 209/405] [WSO2 Release] [Jenkins #2972] [Release 4.0.61] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 393398bd5..aa3c3c20c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.61 + 4.0.62-SNAPSHOT ../pom.xml From 6fde4205afd5ee443e5d2080c36b99f45d059c9a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 29 Aug 2017 07:17:03 +0000 Subject: [PATCH 210/405] [WSO2 Release] [Jenkins #2975] [Release 4.0.62] prepare release v4.0.62 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aa3c3c20c..2148b44fe 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.62-SNAPSHOT + 4.0.62 ../pom.xml From 0a0d9f589dd8550f59c0497ee16647769aa0abd4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 29 Aug 2017 07:17:18 +0000 Subject: [PATCH 211/405] [WSO2 Release] [Jenkins #2975] [Release 4.0.62] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2148b44fe..a80de69d0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.62 + 4.0.63-SNAPSHOT ../pom.xml From 0bc6d10278f89efd519babe6b63d3dbbf893fb3c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 29 Aug 2017 09:22:17 +0000 Subject: [PATCH 212/405] [WSO2 Release] [Jenkins #2977] [Release 4.0.63] prepare release v4.0.63 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a80de69d0..d3b9331f3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.63-SNAPSHOT + 4.0.63 ../pom.xml From 544c27f3592c532b55cc3c73f424f320cbfea9eb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 29 Aug 2017 09:22:33 +0000 Subject: [PATCH 213/405] [WSO2 Release] [Jenkins #2977] [Release 4.0.63] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d3b9331f3..57842d70f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.63 + 4.0.64-SNAPSHOT ../pom.xml From 6e214a4b2981ff8ffb81b3d3f315a7cdf2530c16 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 29 Aug 2017 10:42:31 +0000 Subject: [PATCH 214/405] [WSO2 Release] [Jenkins #2979] [Release 4.0.64] prepare release v4.0.64 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 57842d70f..57cd108af 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.64-SNAPSHOT + 4.0.64 ../pom.xml From b1f0d77feae69f0db75584f94ee9df6dff1a4de0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 29 Aug 2017 10:42:45 +0000 Subject: [PATCH 215/405] [WSO2 Release] [Jenkins #2979] [Release 4.0.64] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 57cd108af..f3e63efe0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.64 + 4.0.65-SNAPSHOT ../pom.xml From 02d3fd77a5a94c5d3329872204ccaba54c5175dc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 30 Aug 2017 06:07:01 +0000 Subject: [PATCH 216/405] [WSO2 Release] [Jenkins #2982] [Release 4.0.65] prepare release v4.0.65 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f3e63efe0..bdad94eac 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.65-SNAPSHOT + 4.0.65 ../pom.xml From 77b5a2f8d97e6b00cf728f5caf910c6a4e9f5451 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 30 Aug 2017 06:07:16 +0000 Subject: [PATCH 217/405] [WSO2 Release] [Jenkins #2982] [Release 4.0.65] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bdad94eac..c4b340d67 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.65 + 4.0.66-SNAPSHOT ../pom.xml From 991f85b6e991eee33491944e84f9699b29081ae2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 08:49:32 +0000 Subject: [PATCH 218/405] [WSO2 Release] [Jenkins #2985] [Release 4.0.66] prepare release v4.0.66 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c4b340d67..5e373800b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.66-SNAPSHOT + 4.0.66 ../pom.xml From 7702dc329faba164fe196f59591410c9dba5cf00 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 08:49:50 +0000 Subject: [PATCH 219/405] [WSO2 Release] [Jenkins #2985] [Release 4.0.66] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5e373800b..75ac10238 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.66 + 4.0.67-SNAPSHOT ../pom.xml From f1ba1d69f2b4eae386212a3eec8f89488faf4548 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 10:06:54 +0000 Subject: [PATCH 220/405] [WSO2 Release] [Jenkins #2986] [Release 4.0.67] prepare release v4.0.67 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 75ac10238..9e96b3367 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.67-SNAPSHOT + 4.0.67 ../pom.xml From 8826c3f1bba775915defd49aebfda65d99f6098d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 10:07:07 +0000 Subject: [PATCH 221/405] [WSO2 Release] [Jenkins #2986] [Release 4.0.67] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9e96b3367..0852495f1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.67 + 4.0.68-SNAPSHOT ../pom.xml From 1135fb797f222747a9a8124f52ecb04e4d4ebbca Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 10:44:11 +0000 Subject: [PATCH 222/405] [WSO2 Release] [Jenkins #2987] [Release 4.0.68] prepare release v4.0.68 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0852495f1..e2e7e94dc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.68-SNAPSHOT + 4.0.68 ../pom.xml From fb806db44c71bcff5d7359dfe6332be233f87e8c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 10:44:25 +0000 Subject: [PATCH 223/405] [WSO2 Release] [Jenkins #2987] [Release 4.0.68] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e2e7e94dc..2e9f7daa2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.68 + 4.0.69-SNAPSHOT ../pom.xml From 7be84ba266ad4e975748ec792d50d6fec6bfc861 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 11:28:36 +0000 Subject: [PATCH 224/405] [WSO2 Release] [Jenkins #2988] [Release 4.0.69] prepare release v4.0.69 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2e9f7daa2..aefa40bb2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.69-SNAPSHOT + 4.0.69 ../pom.xml From 6512c8fe7797f1d318c9c610e28e51a8b1ce2eaa Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 11:28:49 +0000 Subject: [PATCH 225/405] [WSO2 Release] [Jenkins #2988] [Release 4.0.69] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aefa40bb2..8e5818b09 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.69 + 4.0.70-SNAPSHOT ../pom.xml From b13451b6f18880464f5028e081b46be46a45c594 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 13:01:02 +0000 Subject: [PATCH 226/405] [WSO2 Release] [Jenkins #2989] [Release 4.0.70] prepare release v4.0.70 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e5818b09..f1bdd6754 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.70-SNAPSHOT + 4.0.70 ../pom.xml From e9f171356e45aed36cb455b83ac16686c798ae9b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 13:01:15 +0000 Subject: [PATCH 227/405] [WSO2 Release] [Jenkins #2989] [Release 4.0.70] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f1bdd6754..f483971a2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.70 + 4.0.71-SNAPSHOT ../pom.xml From ba839cc5d1e6435952d0ec867c5fb7810d63cbfe Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 13:38:10 +0000 Subject: [PATCH 228/405] [WSO2 Release] [Jenkins #2990] [Release 4.0.71] prepare release v4.0.71 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f483971a2..3f595b7de 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.71-SNAPSHOT + 4.0.71 ../pom.xml From 36d54d6085925398ad1a2381275859f65dc1b198 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 13:38:23 +0000 Subject: [PATCH 229/405] [WSO2 Release] [Jenkins #2990] [Release 4.0.71] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3f595b7de..bee42787c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.71 + 4.0.72-SNAPSHOT ../pom.xml From 8e0626244729b426828bc1c54fff0e5c7a6c33b5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 1 Sep 2017 08:00:57 +0000 Subject: [PATCH 230/405] [WSO2 Release] [Jenkins #2993] [Release 4.0.72] prepare release v4.0.72 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bee42787c..6121761e4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.72-SNAPSHOT + 4.0.72 ../pom.xml From 22b6cff989f4601e14864261e97df6d4cc690965 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 1 Sep 2017 08:01:13 +0000 Subject: [PATCH 231/405] [WSO2 Release] [Jenkins #2993] [Release 4.0.72] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6121761e4..be39c4842 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.72 + 4.0.73-SNAPSHOT ../pom.xml From f2c0146be4eaaf8fe449573711affc71e5460174 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 7 Sep 2017 12:21:19 +0000 Subject: [PATCH 232/405] [WSO2 Release] [Jenkins #3001] [Release 4.0.73] prepare release v4.0.73 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index be39c4842..847751b3d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.73-SNAPSHOT + 4.0.73 ../pom.xml From b773845d83fd22f93601b9ca4718ab26d03e068e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 7 Sep 2017 12:21:32 +0000 Subject: [PATCH 233/405] [WSO2 Release] [Jenkins #3001] [Release 4.0.73] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 847751b3d..79bfa79dd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.73 + 4.0.74-SNAPSHOT ../pom.xml From 401cb5b5ea24cee8f8213f59d37ee7424481de21 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 7 Sep 2017 13:01:27 +0000 Subject: [PATCH 234/405] [WSO2 Release] [Jenkins #3002] [Release 4.0.74] prepare release v4.0.74 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 79bfa79dd..8e1ee30e9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.74-SNAPSHOT + 4.0.74 ../pom.xml From 79c0a2bca264a3b77c53d3cf318a8a224d951e36 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 7 Sep 2017 13:01:41 +0000 Subject: [PATCH 235/405] [WSO2 Release] [Jenkins #3002] [Release 4.0.74] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e1ee30e9..fa57713b5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.74 + 4.0.75-SNAPSHOT ../pom.xml From eb0c0b32832a726f8c9dd983936e1f6997a46b14 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 8 Sep 2017 11:01:36 +0000 Subject: [PATCH 236/405] [WSO2 Release] [Jenkins #3005] [Release 4.0.75] prepare release v4.0.75 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fa57713b5..b3e110193 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.75-SNAPSHOT + 4.0.75 ../pom.xml From 9d3fa4531089a42683b368982510ef4374a909f8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 8 Sep 2017 11:01:50 +0000 Subject: [PATCH 237/405] [WSO2 Release] [Jenkins #3005] [Release 4.0.75] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b3e110193..45db8339a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.75 + 4.0.76-SNAPSHOT ../pom.xml From c3ef6f2884a885e59beb75403612ad6c4f56d514 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 8 Sep 2017 12:38:16 +0000 Subject: [PATCH 238/405] [WSO2 Release] [Jenkins #3007] [Release 4.0.76] prepare release v4.0.76 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 45db8339a..b06ddbefb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.76-SNAPSHOT + 4.0.76 ../pom.xml From 513b81d6f138e5a47330c4e3fae524fe0d835d58 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 8 Sep 2017 12:38:30 +0000 Subject: [PATCH 239/405] [WSO2 Release] [Jenkins #3007] [Release 4.0.76] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b06ddbefb..5b7a85670 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.76 + 4.0.77-SNAPSHOT ../pom.xml From 3480efb016dc1a5f655b66f2fd3cfce2c0b06639 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 11 Sep 2017 09:16:54 +0000 Subject: [PATCH 240/405] [WSO2 Release] [Jenkins #3009] [Release 4.0.77] prepare release v4.0.77 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5b7a85670..7d0bb6848 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.77-SNAPSHOT + 4.0.77 ../pom.xml From 7d8827e928b408e3d43e33dadcaa0a895202de98 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 11 Sep 2017 09:17:08 +0000 Subject: [PATCH 241/405] [WSO2 Release] [Jenkins #3009] [Release 4.0.77] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7d0bb6848..05dba7660 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.77 + 4.0.78-SNAPSHOT ../pom.xml From 144c07030d0bc002134163bb417fd1daaffe9a86 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Sep 2017 07:20:51 +0000 Subject: [PATCH 242/405] [WSO2 Release] [Jenkins #3011] [Release 4.0.78] prepare release v4.0.78 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 05dba7660..37c6db31c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.78-SNAPSHOT + 4.0.78 ../pom.xml From 45ab538ad679c8858bbf54413f5187e4be40a53c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Sep 2017 07:21:05 +0000 Subject: [PATCH 243/405] [WSO2 Release] [Jenkins #3011] [Release 4.0.78] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 37c6db31c..b1777618f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.78 + 4.0.79-SNAPSHOT ../pom.xml From 6791ea1d42bd89b05094e3338f74c71bc3b04d84 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Sep 2017 10:24:29 +0000 Subject: [PATCH 244/405] [WSO2 Release] [Jenkins #3013] [Release 4.0.79] prepare release v4.0.79 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b1777618f..4a9c52537 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.79-SNAPSHOT + 4.0.79 ../pom.xml From ac18d54b5496d84a7e833f1f79b7b6f43d5bc9ff Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Sep 2017 10:24:44 +0000 Subject: [PATCH 245/405] [WSO2 Release] [Jenkins #3013] [Release 4.0.79] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4a9c52537..099663c8d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.79 + 4.0.80-SNAPSHOT ../pom.xml From 0a6a237217b2c1b169e7de7211b5d00c90c16e08 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Sep 2017 12:19:50 +0000 Subject: [PATCH 246/405] [WSO2 Release] [Jenkins #3015] [Release 4.0.80] prepare release v4.0.80 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 099663c8d..5a154c099 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.80-SNAPSHOT + 4.0.80 ../pom.xml From 3e0acd9925acb9407d4a52e2ad89722df3c537b4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Sep 2017 12:20:04 +0000 Subject: [PATCH 247/405] [WSO2 Release] [Jenkins #3015] [Release 4.0.80] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5a154c099..ade0fd038 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.80 + 4.0.81-SNAPSHOT ../pom.xml From 22419d9ea77629ce7eb66015e5fcb306847d9db4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 19 Sep 2017 09:00:19 +0000 Subject: [PATCH 248/405] [WSO2 Release] [Jenkins #3017] [Release 4.0.81] prepare release v4.0.81 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ade0fd038..e7f2af5ec 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.81-SNAPSHOT + 4.0.81 ../pom.xml From 7e025ba0eb4e155cef59481f37c8b2ac635008d4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 19 Sep 2017 09:00:33 +0000 Subject: [PATCH 249/405] [WSO2 Release] [Jenkins #3017] [Release 4.0.81] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e7f2af5ec..cb926020f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.81 + 4.0.82-SNAPSHOT ../pom.xml From 9de553b4d753aa3e9c69eb4e705217a0566e19c6 Mon Sep 17 00:00:00 2001 From: Ace Date: Thu, 21 Sep 2017 12:00:26 +0530 Subject: [PATCH 250/405] correcting pom versions and bumping APIM dependency --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ade0fd038..cb926020f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.81-SNAPSHOT + 4.0.82-SNAPSHOT ../pom.xml From a7b16e78a8203a50187fd9c4142f9add387aafac Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 21 Sep 2017 10:51:08 +0000 Subject: [PATCH 251/405] [WSO2 Release] [Jenkins #3019] [Release 4.0.82] prepare release v4.0.82 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cb926020f..9f90719b8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.82-SNAPSHOT + 4.0.82 ../pom.xml From cc4a27a8cf0b30e4b073c904451a3cfe5fd3459f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 21 Sep 2017 10:51:23 +0000 Subject: [PATCH 252/405] [WSO2 Release] [Jenkins #3019] [Release 4.0.82] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9f90719b8..6093f41f6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.82 + 4.0.83-SNAPSHOT ../pom.xml From 8efa3faaf5c1c222b6d38ba6447cc32fe5bd7391 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 22 Sep 2017 06:11:46 +0000 Subject: [PATCH 253/405] [WSO2 Release] [Jenkins #3021] [Release 4.0.83] prepare release v4.0.83 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6093f41f6..02e42674c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.83-SNAPSHOT + 4.0.83 ../pom.xml From 80081392f4eadac1c9b599621c626e0e4b004828 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 22 Sep 2017 06:11:59 +0000 Subject: [PATCH 254/405] [WSO2 Release] [Jenkins #3021] [Release 4.0.83] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 02e42674c..831d061d1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.83 + 4.0.84-SNAPSHOT ../pom.xml From 9c1fcd27d100235715c190b68c889756ccc173a2 Mon Sep 17 00:00:00 2001 From: megala21 Date: Mon, 25 Sep 2017 00:41:01 +0530 Subject: [PATCH 255/405] Adding jacoco plugins for unit coverage --- pom.xml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/pom.xml b/pom.xml index 831d061d1..70e1bfbea 100644 --- a/pom.xml +++ b/pom.xml @@ -84,6 +84,32 @@ + + org.jacoco + jacoco-maven-plugin + + ${basedir}/target/coverage-reports/jacoco-unit.exec + + + + jacoco-initialize + + prepare-agent + + + + jacoco-site + test + + report + + + ${basedir}/target/coverage-reports/jacoco-unit.exec + ${basedir}/target/coverage-reports/site + + + + \ No newline at end of file From 20686bde1b248d4ea3c12bb93038544b9384bb6a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 25 Sep 2017 04:01:32 +0000 Subject: [PATCH 256/405] [WSO2 Release] [Jenkins #3023] [Release 4.0.84] prepare release v4.0.84 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 70e1bfbea..0d771038b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.84-SNAPSHOT + 4.0.84 ../pom.xml From 35c5bad8713c8eef3cd25d9894c5719e04b422d9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 25 Sep 2017 04:01:48 +0000 Subject: [PATCH 257/405] [WSO2 Release] [Jenkins #3023] [Release 4.0.84] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0d771038b..eaf3f3d3c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.84 + 4.0.85-SNAPSHOT ../pom.xml From af639983322ca26b2bdc5aa7e797c143f9f058f8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 26 Sep 2017 05:11:14 +0000 Subject: [PATCH 258/405] [WSO2 Release] [Jenkins #3025] [Release 4.0.85] prepare release v4.0.85 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index eaf3f3d3c..418cea316 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.85-SNAPSHOT + 4.0.85 ../pom.xml From e612dce51af23cf08fec2f23cde3f6608f1f4e81 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 26 Sep 2017 05:11:29 +0000 Subject: [PATCH 259/405] [WSO2 Release] [Jenkins #3025] [Release 4.0.85] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 418cea316..5d7bd795e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.85 + 4.0.86-SNAPSHOT ../pom.xml From 3448ec5b0bc09d0f1cb489f755ac1855f346490f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 29 Sep 2017 12:53:25 +0000 Subject: [PATCH 260/405] [WSO2 Release] [Jenkins #3028] [Release 4.0.86] prepare release v4.0.86 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5d7bd795e..3e8258c0d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.86-SNAPSHOT + 4.0.86 ../pom.xml From b3a2746dcd52c7518fa50bf32aeb5a1945750ae7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 29 Sep 2017 12:53:39 +0000 Subject: [PATCH 261/405] [WSO2 Release] [Jenkins #3028] [Release 4.0.86] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3e8258c0d..d6a7302b6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.86 + 4.0.87-SNAPSHOT ../pom.xml From 841abffd7894f5e2461095c04060ff58669813ec Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 4 Oct 2017 13:14:58 +0530 Subject: [PATCH 262/405] [WSO2 Release] [Jenkins #3032] [Release 4.0.87] prepare release v4.0.87 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d6a7302b6..55267b607 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.87-SNAPSHOT + 4.0.87 ../pom.xml From d06a6d509dde9ca6c031b7c982b899eac2e89eb1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 4 Oct 2017 13:15:15 +0530 Subject: [PATCH 263/405] [WSO2 Release] [Jenkins #3032] [Release 4.0.87] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 55267b607..587458e90 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.87 + 4.0.88-SNAPSHOT ../pom.xml From 24798f7c95cf1f74e73d13afc2290ec93e479939 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 13 Oct 2017 15:54:28 +0000 Subject: [PATCH 264/405] [WSO2 Release] [Jenkins #3035] [Release 4.0.88] prepare release v4.0.88 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 587458e90..2333f92d2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.88-SNAPSHOT + 4.0.88 ../pom.xml From fdfe130814a7928995c059e88331a6ba1bd7b6ba Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 13 Oct 2017 15:54:42 +0000 Subject: [PATCH 265/405] [WSO2 Release] [Jenkins #3035] [Release 4.0.88] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2333f92d2..5254a0eff 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.88 + 4.0.89-SNAPSHOT ../pom.xml From 0a87c9c8c0c2dd441a60a6a97103b4c5d86bd372 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 18 Oct 2017 09:34:54 +0000 Subject: [PATCH 266/405] [WSO2 Release] [Jenkins #3037] [Release 4.0.89] prepare release v4.0.89 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5254a0eff..7a41a7b68 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.89-SNAPSHOT + 4.0.89 ../pom.xml From 77065bf0fe41198df31f4c905e5cc6c9d39caecb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 18 Oct 2017 09:35:08 +0000 Subject: [PATCH 267/405] [WSO2 Release] [Jenkins #3037] [Release 4.0.89] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7a41a7b68..d903504cc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.89 + 4.0.90-SNAPSHOT ../pom.xml From 601c4ea0f9f87a359f4d3ca6d1d790011be8ceab Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 18 Oct 2017 11:36:51 +0000 Subject: [PATCH 268/405] [WSO2 Release] [Jenkins #3039] [Release 4.0.90] prepare release v4.0.90 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d903504cc..b204a4f51 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.90-SNAPSHOT + 4.0.90 ../pom.xml From d085b78dcf5d9b05b89f1ffa45ac039c25f1c5dc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 18 Oct 2017 11:37:05 +0000 Subject: [PATCH 269/405] [WSO2 Release] [Jenkins #3039] [Release 4.0.90] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b204a4f51..bcbed75df 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.90 + 4.0.91-SNAPSHOT ../pom.xml From 1ccae434cfadc35d38e5e5a99db4d7af970ce167 Mon Sep 17 00:00:00 2001 From: Menaka Jayawardena Date: Tue, 24 Oct 2017 10:41:55 +0530 Subject: [PATCH 270/405] Code formatting and refactoring for device-mgt-plugins siddhi extension. --- ...java => GetPropertyFunctionExtension.java} | 27 ++++++++++--------- src/main/resources/json.siddhiext | 2 +- .../json/getPropertyFunctionTestCase.java | 2 +- 3 files changed, 17 insertions(+), 14 deletions(-) rename src/main/java/org/wso2/extension/siddhi/execution/json/{getPropertyFunctionExtension.java => GetPropertyFunctionExtension.java} (82%) diff --git a/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java b/src/main/java/org/wso2/extension/siddhi/execution/json/GetPropertyFunctionExtension.java similarity index 82% rename from src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java rename to src/main/java/org/wso2/extension/siddhi/execution/json/GetPropertyFunctionExtension.java index 8f68577a6..6bb8ddd72 100644 --- a/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java +++ b/src/main/java/org/wso2/extension/siddhi/execution/json/GetPropertyFunctionExtension.java @@ -33,9 +33,9 @@ import org.wso2.siddhi.query.api.exception.ExecutionPlanValidationException; * Accept Type(s): (STRING, STRING) * Return Type(s): (STRING|INT|DOUBLE|FLOAT|OBJECT) */ -public class getPropertyFunctionExtension extends FunctionExecutor { +public class GetPropertyFunctionExtension extends FunctionExecutor { - Attribute.Type returnType = Attribute.Type.STRING; + private Attribute.Type returnType = Attribute.Type.STRING; @Override protected void init(ExpressionExecutor[] attributeExpressionExecutors, @@ -47,32 +47,34 @@ public class getPropertyFunctionExtension extends FunctionExecutor { } if (attributeExpressionExecutors[0].getReturnType() != Attribute.Type.STRING) { throw new ExecutionPlanValidationException( - "Invalid parameter type found for the first argument of json:getProperty() function, " + "required " + "Invalid parameter type found for the first argument of json:getProperty() function, required " + Attribute.Type.STRING + ", but found " + attributeExpressionExecutors[0].getReturnType() .toString()); } if (attributeExpressionExecutors[1].getReturnType() != Attribute.Type.STRING) { throw new ExecutionPlanValidationException( - "Invalid parameter type found for the second argument of json:getProperty() function, " + "required " - + Attribute.Type.STRING + ", but found " + attributeExpressionExecutors[1].getReturnType() - .toString()); + "Invalid parameter type found for the second argument of json:getProperty() function, required " + + Attribute.Type.STRING + ", but found " + + attributeExpressionExecutors[1].getReturnType().toString()); } } @Override protected Object execute(Object[] data) { if (data[0] == null) { - throw new ExecutionPlanRuntimeException("Invalid input given to json:getProperty() function. First argument cannot be null"); + throw new ExecutionPlanRuntimeException("Invalid input given to json:getProperty() function." + + " First argument cannot be null"); } if (data[1] == null) { - throw new ExecutionPlanRuntimeException("Invalid input given to json:getProperty() function. Second argument cannot be null"); + throw new ExecutionPlanRuntimeException("Invalid input given to json:getProperty() function. " + + "Second argument cannot be null"); } String jsonString = (String) data[0]; String property = (String) data[1]; - JSONObject jsonObject = null; + Object jsonObject; try { - jsonObject = new JSONObject(jsonString); - return jsonObject.get(property).toString(); + jsonObject = new JSONObject(jsonString).get(property); + return jsonObject == null ? null : jsonObject.toString(); } catch (JSONException e) { throw new ExecutionPlanRuntimeException("Cannot parse JSON String in json:getPeroperty() function. " + e); } @@ -80,7 +82,8 @@ public class getPropertyFunctionExtension extends FunctionExecutor { @Override protected Object execute(Object data) { - return null; //Since the getProperty function takes in 2 parameters, this method does not get called. Hence,not implemented. + return null; //Since the getProperty function takes in 2 parameters, this method does not get called. + // Hence,not implemented. } @Override diff --git a/src/main/resources/json.siddhiext b/src/main/resources/json.siddhiext index f1886dd63..f2a86a7eb 100644 --- a/src/main/resources/json.siddhiext +++ b/src/main/resources/json.siddhiext @@ -16,4 +16,4 @@ # under the License. # -getProperty=org.wso2.extension.siddhi.execution.json.getPropertyFunctionExtension +getProperty=org.wso2.extension.siddhi.execution.json.GetPropertyFunctionExtension diff --git a/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java b/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java index 7bc66478c..c1c49f788 100644 --- a/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java +++ b/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java @@ -45,7 +45,7 @@ public class getPropertyFunctionTestCase { @Test public void testGetPropertyFunctionExtension() throws InterruptedException { - log.info("getPropertyFunctionExtension TestCase"); + log.info("GetPropertyFunctionExtension TestCase"); SiddhiManager siddhiManager = new SiddhiManager(); String inStreamDefinition = "define stream inputStream (payload string, id string, volume long);"; From 30c4d8128a10300ead0a2e38058e8e5cb0d5570b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 31 Oct 2017 07:46:26 +0000 Subject: [PATCH 271/405] [WSO2 Release] [Jenkins #3049] [Release 4.0.91] prepare release v4.0.91 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bcbed75df..48cb32830 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.91-SNAPSHOT + 4.0.91 ../pom.xml From 61f8a53660024b2e0352733d38c203a015f2f331 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 31 Oct 2017 07:46:40 +0000 Subject: [PATCH 272/405] [WSO2 Release] [Jenkins #3049] [Release 4.0.91] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 48cb32830..cbb14b984 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.91 + 4.0.92-SNAPSHOT ../pom.xml From 9eb96b8e56559d52cd69818afe51e614e35f0420 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 2 Nov 2017 11:56:35 +0000 Subject: [PATCH 273/405] [WSO2 Release] [Jenkins #3051] [Release 4.0.92] prepare release v4.0.92 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cbb14b984..f6a341838 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.92-SNAPSHOT + 4.0.92 ../pom.xml From ded85a9a11ffe4ec5636c6a9370df54bc0b5c4fd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 2 Nov 2017 11:56:51 +0000 Subject: [PATCH 274/405] [WSO2 Release] [Jenkins #3051] [Release 4.0.92] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f6a341838..57fa74dd6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.92 + 4.0.93-SNAPSHOT ../pom.xml From cb9162520cded57e29fac2f73d0d3e73631bf3c7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 16 Nov 2017 15:59:00 +0000 Subject: [PATCH 275/405] [WSO2 Release] [Jenkins #3053] [Release 4.0.93] prepare release v4.0.93 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 57fa74dd6..085bdc1ee 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.93-SNAPSHOT + 4.0.93 ../pom.xml From ba54a878dd8a7b6339c503ecc569594f49da30e9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 16 Nov 2017 15:59:16 +0000 Subject: [PATCH 276/405] [WSO2 Release] [Jenkins #3053] [Release 4.0.93] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 085bdc1ee..e1d6e6695 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.93 + 4.0.94-SNAPSHOT ../pom.xml From 26ab0fcff2e2319d42f470119b892ff114daa2f0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 09:07:04 +0000 Subject: [PATCH 277/405] [WSO2 Release] [Jenkins #3055] [Release 4.0.94] prepare release v4.0.94 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e1d6e6695..9a6f37c00 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.94-SNAPSHOT + 4.0.94 ../pom.xml From 935992b512d0b207044d521f4edc5530091f5fdd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 09:07:21 +0000 Subject: [PATCH 278/405] [WSO2 Release] [Jenkins #3055] [Release 4.0.94] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9a6f37c00..dca6c7c7b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.94 + 4.0.95-SNAPSHOT ../pom.xml From 0ace204960238a904741c24167a9b64e51b992e6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 09:43:56 +0000 Subject: [PATCH 279/405] [WSO2 Release] [Jenkins #3056] [Release 4.0.95] prepare release v4.0.95 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dca6c7c7b..40ee35669 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.95-SNAPSHOT + 4.0.95 ../pom.xml From 079f2e474886c3e02ebf9cde8d8ec1029225ac3e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 09:44:11 +0000 Subject: [PATCH 280/405] [WSO2 Release] [Jenkins #3056] [Release 4.0.95] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 40ee35669..ff1566236 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.95 + 4.0.96-SNAPSHOT ../pom.xml From 91f7540ec792989b790c847480cb9a95215dc581 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 10:55:43 +0000 Subject: [PATCH 281/405] [WSO2 Release] [Jenkins #3058] [Release 4.0.96] prepare release v4.0.96 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ff1566236..33f8d0c70 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.96-SNAPSHOT + 4.0.96 ../pom.xml From efa3d0194d50e884ff73df6bc7e8915b186b9e2f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 10:55:56 +0000 Subject: [PATCH 282/405] [WSO2 Release] [Jenkins #3058] [Release 4.0.96] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 33f8d0c70..ac02375b0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.96 + 4.0.97-SNAPSHOT ../pom.xml From d19b41e389a8b796f7b286b75f42cf2b667ced44 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 13:02:44 +0000 Subject: [PATCH 283/405] [WSO2 Release] [Jenkins #3060] [Release 4.0.97] prepare release v4.0.97 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ac02375b0..e2a667bc2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.97-SNAPSHOT + 4.0.97 ../pom.xml From 20af45e3cc186da610b141b7ec2e417de626e8ce Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 13:02:58 +0000 Subject: [PATCH 284/405] [WSO2 Release] [Jenkins #3060] [Release 4.0.97] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e2a667bc2..cf9c55f69 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.97 + 4.0.98-SNAPSHOT ../pom.xml From dd0c7a33877f004b5371b4b7883af138586f8f35 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Nov 2017 12:30:02 +0000 Subject: [PATCH 285/405] [WSO2 Release] [Jenkins #3064] [Release 4.0.98] prepare release v4.0.98 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cf9c55f69..8d323166f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.98-SNAPSHOT + 4.0.98 ../pom.xml From 0a39e302f3e5cac624e8aafbe9fc89187e1e8ae2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Nov 2017 12:30:19 +0000 Subject: [PATCH 286/405] [WSO2 Release] [Jenkins #3064] [Release 4.0.98] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8d323166f..52a77b21f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.98 + 4.0.99-SNAPSHOT ../pom.xml From de63628e998552a55ec7185b8d89d0b5685880db Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Nov 2017 14:37:32 +0000 Subject: [PATCH 287/405] [WSO2 Release] [Jenkins #3066] [Release 4.0.99] prepare release v4.0.99 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 52a77b21f..9931f094f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.99-SNAPSHOT + 4.0.99 ../pom.xml From 8ec3dd5f32bd10d922c28cea80c59d70c8e7f128 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Nov 2017 14:37:47 +0000 Subject: [PATCH 288/405] [WSO2 Release] [Jenkins #3066] [Release 4.0.99] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9931f094f..54c691765 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.99 + 4.0.100-SNAPSHOT ../pom.xml From 1c90ad80baa2ec28d2b107767952990892867364 Mon Sep 17 00:00:00 2001 From: charitha Date: Wed, 29 Nov 2017 15:48:13 +0530 Subject: [PATCH 289/405] Add siddhi extension to Get json array form given list of arguments --- pom.xml | 4 +- .../json/GetArrayFunctionExtension.java | 96 +++++++++++++++++++ src/main/resources/json.siddhiext | 5 +- ...onTestCase.java => ExtensionTestCase.java} | 51 ++++++++-- 4 files changed, 144 insertions(+), 12 deletions(-) create mode 100644 src/main/java/org/wso2/extension/siddhi/execution/json/GetArrayFunctionExtension.java rename src/test/java/org/wso2/extension/siddhi/execution/json/{getPropertyFunctionTestCase.java => ExtensionTestCase.java} (64%) diff --git a/pom.xml b/pom.xml index 54c691765..09bfb0ad6 100644 --- a/pom.xml +++ b/pom.xml @@ -48,8 +48,8 @@ json - junit - junit + org.testng + testng test diff --git a/src/main/java/org/wso2/extension/siddhi/execution/json/GetArrayFunctionExtension.java b/src/main/java/org/wso2/extension/siddhi/execution/json/GetArrayFunctionExtension.java new file mode 100644 index 000000000..08712416e --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/execution/json/GetArrayFunctionExtension.java @@ -0,0 +1,96 @@ +/* + * Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.wso2.extension.siddhi.execution.json; + +import org.json.JSONArray; +import org.wso2.siddhi.core.config.ExecutionPlanContext; +import org.wso2.siddhi.core.executor.ExpressionExecutor; +import org.wso2.siddhi.core.executor.function.FunctionExecutor; +import org.wso2.siddhi.query.api.definition.Attribute; +import org.wso2.siddhi.query.api.exception.ExecutionPlanValidationException; + +/** + * getArray(elements..) + * Returns json array of elements as a string + * Accept Type(s): (STRING|INT|DOUBLE|FLOAT|OBJECT ..) + * Return Type(s): (STRING) + */ +public class GetArrayFunctionExtension extends FunctionExecutor { + + private Attribute.Type returnType = Attribute.Type.STRING; + + @Override + protected void init(ExpressionExecutor[] attributeExpressionExecutors, + ExecutionPlanContext executionPlanContext) { + if (attributeExpressionExecutors.length <= 0) { + throw new ExecutionPlanValidationException( + "Invalid no of arguments passed to json:getArray() function," + " required one or more, but found " + + attributeExpressionExecutors.length); + } + Attribute.Type inputType = attributeExpressionExecutors[0].getReturnType(); + for (int i = 1; i < attributeExpressionExecutors.length; i++) { + if (attributeExpressionExecutors[0].getReturnType() != inputType) { + throw new ExecutionPlanValidationException( + "Parameter types are inconsistent. All parameters should be same"); + } + } + } + + @Override + protected Object execute(Object[] data) { + + JSONArray jsonArray = new JSONArray(); + for (Object obj : data) { + jsonArray.put(obj); + } + return jsonArray.toString(); + } + + @Override + protected Object execute(Object data) { + return execute(new Object[]{data}); + } + + @Override + public void start() { + //Nothing to start + } + + @Override + public void stop() { + //Nothing to stop + } + + @Override + public Attribute.Type getReturnType() { + return returnType; + } + + @Override + public Object[] currentState() { + return null; //No need to maintain a state. + } + + @Override + public void restoreState(Object[] state) { + //Since there's no need to maintain a state, nothing needs to be done here. + } +} + + diff --git a/src/main/resources/json.siddhiext b/src/main/resources/json.siddhiext index f2a86a7eb..fa4336f4a 100644 --- a/src/main/resources/json.siddhiext +++ b/src/main/resources/json.siddhiext @@ -1,12 +1,12 @@ # -# Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +# Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. # # WSO2 Inc. licenses this file to you under the Apache License, # Version 2.0 (the "License"); you may not use this file except # in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an @@ -17,3 +17,4 @@ # getProperty=org.wso2.extension.siddhi.execution.json.GetPropertyFunctionExtension +getArray=org.wso2.extension.siddhi.execution.json.GetArrayFunctionExtension \ No newline at end of file diff --git a/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java b/src/test/java/org/wso2/extension/siddhi/execution/json/ExtensionTestCase.java similarity index 64% rename from src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java rename to src/test/java/org/wso2/extension/siddhi/execution/json/ExtensionTestCase.java index c1c49f788..761336a2d 100644 --- a/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java +++ b/src/test/java/org/wso2/extension/siddhi/execution/json/ExtensionTestCase.java @@ -1,12 +1,12 @@ /* - * Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except * in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an @@ -18,10 +18,10 @@ package org.wso2.extension.siddhi.execution.json; -import junit.framework.Assert; import org.apache.log4j.Logger; -import org.junit.Before; -import org.junit.Test; +import org.testng.Assert; +import org.testng.annotations.BeforeClass; +import org.testng.annotations.Test; import org.wso2.siddhi.core.ExecutionPlanRuntime; import org.wso2.siddhi.core.SiddhiManager; import org.wso2.siddhi.core.event.Event; @@ -32,12 +32,12 @@ import org.wso2.extension.siddhi.execution.json.test.util.SiddhiTestHelper; import java.util.concurrent.atomic.AtomicInteger; -public class getPropertyFunctionTestCase { - static final Logger log = Logger.getLogger(getPropertyFunctionTestCase.class); +public class ExtensionTestCase { + static final Logger log = Logger.getLogger(ExtensionTestCase.class); private AtomicInteger count = new AtomicInteger(0); private volatile boolean eventArrived; - @Before + @BeforeClass public void init() { count.set(0); eventArrived = false; @@ -85,4 +85,39 @@ public class getPropertyFunctionTestCase { Assert.assertTrue(eventArrived); executionPlanRuntime.shutdown(); } + + @Test(dependsOnMethods = {"testGetPropertyFunctionExtension"}) + public void testGetArrayFunctionExtension() throws InterruptedException { + count.set(0); + eventArrived = false; + log.info("GetArrayFunctionExtension TestCase"); + SiddhiManager siddhiManager = new SiddhiManager(); + + String inStreamDefinition = "define stream inputStream (arg1 string, arg2 string);"; + String query = ("@info(name = 'query1') from inputStream select json:getArray(arg1, arg2) " + + "as array insert into outputStream;"); + + ExecutionPlanRuntime executionPlanRuntime = siddhiManager.createExecutionPlanRuntime(inStreamDefinition + query); + + executionPlanRuntime.addCallback("query1", new QueryCallback() { + @Override + public void receive(long timeStamp, Event[] inEvents, Event[] removeEvents) { + EventPrinter.print(timeStamp, inEvents, removeEvents); + for (Event event : inEvents) { + count.incrementAndGet(); + if (count.get() == 1) { + eventArrived = true; + } + } + } + }); + + InputHandler inputHandler = executionPlanRuntime.getInputHandler("inputStream"); + executionPlanRuntime.start(); + inputHandler.send(new Object[]{"Arg1","Arg2"}); + SiddhiTestHelper.waitForEvents(100, 1, count, 60000); + Assert.assertEquals(1, count.get()); + Assert.assertTrue(eventArrived); + executionPlanRuntime.shutdown(); + } } From bee7360f3a1c6911372a36f0f3b9b36a2850669c Mon Sep 17 00:00:00 2001 From: charitha Date: Wed, 29 Nov 2017 21:30:04 +0530 Subject: [PATCH 290/405] Improve testing --- pom.xml | 12 ++++++++++++ src/test/resources/testng.xml | 30 ++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 src/test/resources/testng.xml diff --git a/pom.xml b/pom.xml index 09bfb0ad6..de341dfb6 100644 --- a/pom.xml +++ b/pom.xml @@ -84,6 +84,18 @@ + + org.apache.maven.plugins + maven-surefire-plugin + + + file:src/test/resources/log4j.properties + + + src/test/resources/testng.xml + + + org.jacoco jacoco-maven-plugin diff --git a/src/test/resources/testng.xml b/src/test/resources/testng.xml new file mode 100644 index 000000000..80918d253 --- /dev/null +++ b/src/test/resources/testng.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + From 106974d5069264876bf6dc32ec5fac75067ab067 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Nov 2017 16:30:29 +0000 Subject: [PATCH 291/405] [WSO2 Release] [Jenkins #3068] [Release 4.0.100] prepare release v4.0.100 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index de341dfb6..d7304abbf 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.100-SNAPSHOT + 4.0.100 ../pom.xml From f04b920738cb610e0fd4919f493171ddf8847949 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Nov 2017 16:30:44 +0000 Subject: [PATCH 292/405] [WSO2 Release] [Jenkins #3068] [Release 4.0.100] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d7304abbf..9297d7434 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.100 + 4.0.101-SNAPSHOT ../pom.xml From c2f096b3711833141cd8988670806dbc59945c8a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 30 Nov 2017 06:01:18 +0000 Subject: [PATCH 293/405] [WSO2 Release] [Jenkins #3070] [Release 4.0.101] prepare release v4.0.101 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9297d7434..ecf1702de 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.101-SNAPSHOT + 4.0.101 ../pom.xml From bc3301ddcb0621fcbc797763fe62b4c2d618dbc2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 30 Nov 2017 06:01:33 +0000 Subject: [PATCH 294/405] [WSO2 Release] [Jenkins #3070] [Release 4.0.101] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ecf1702de..40ba509c7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.101 + 4.0.102-SNAPSHOT ../pom.xml From 17bcb38f5bc49c4b95a92cd1db31a2f87f685cd7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 13 Dec 2017 03:58:06 +0000 Subject: [PATCH 295/405] [WSO2 Release] [Jenkins #3072] [Release 4.0.102] prepare release v4.0.102 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 40ba509c7..8c311048d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.102-SNAPSHOT + 4.0.102 ../pom.xml From 7c7aeb2ed654096505e5f7a65065367ec86c6a39 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 13 Dec 2017 03:58:20 +0000 Subject: [PATCH 296/405] [WSO2 Release] [Jenkins #3072] [Release 4.0.102] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8c311048d..01777a935 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.102 + 4.0.103-SNAPSHOT ../pom.xml From 6c7aeed47e7e938099615909c75803f8be2e21bb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 13 Dec 2017 07:06:19 +0000 Subject: [PATCH 297/405] [WSO2 Release] [Jenkins #3074] [Release 4.0.103] prepare release v4.0.103 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 01777a935..b9a4fa5f6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.103-SNAPSHOT + 4.0.103 ../pom.xml From e1aa1c96164431ffceebed6d72e22d3797a36cf6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 13 Dec 2017 07:06:33 +0000 Subject: [PATCH 298/405] [WSO2 Release] [Jenkins #3074] [Release 4.0.103] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b9a4fa5f6..362912047 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.103 + 4.0.104-SNAPSHOT ../pom.xml From 3f1e09de5e03e971524ab3107d988155d4d255ef Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Dec 2017 09:24:58 +0000 Subject: [PATCH 299/405] [WSO2 Release] [Jenkins #3076] [Release 4.0.104] prepare release v4.0.104 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 362912047..9854f1290 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.104-SNAPSHOT + 4.0.104 ../pom.xml From cbbfb6c95a0c7ec3bea6469018f154426145732d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Dec 2017 09:25:13 +0000 Subject: [PATCH 300/405] [WSO2 Release] [Jenkins #3076] [Release 4.0.104] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9854f1290..bd72a5d6c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.104 + 4.0.105-SNAPSHOT ../pom.xml From ea873dfdfde584e19bc1adc3ed22ed8e9208b201 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Dec 2017 13:48:13 +0000 Subject: [PATCH 301/405] [WSO2 Release] [Jenkins #3079] [Release 4.0.105] prepare release v4.0.105 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bd72a5d6c..1c4c096e1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.105-SNAPSHOT + 4.0.105 ../pom.xml From bfd70bb00d7b9de3d643f68505bc1c35e7377d6a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Dec 2017 13:48:28 +0000 Subject: [PATCH 302/405] [WSO2 Release] [Jenkins #3079] [Release 4.0.105] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1c4c096e1..db9874fa4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.105 + 4.0.106-SNAPSHOT ../pom.xml From f2585d093f5a2be259d6b18a1b0660b1e2b9e710 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Dec 2017 16:06:38 +0000 Subject: [PATCH 303/405] [WSO2 Release] [Jenkins #3081] [Release 4.0.106] prepare release v4.0.106 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index db9874fa4..51a3191e2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.106-SNAPSHOT + 4.0.106 ../pom.xml From 60dbfa649fa01d75432a647f93b879bd451c6b75 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Dec 2017 16:06:54 +0000 Subject: [PATCH 304/405] [WSO2 Release] [Jenkins #3081] [Release 4.0.106] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 51a3191e2..7f4d2eeaf 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.106 + 4.0.107-SNAPSHOT ../pom.xml From 1927f0a1d280cf2a58a8116966cddedc08eef270 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 24 Dec 2017 17:28:12 +0000 Subject: [PATCH 305/405] [WSO2 Release] [Jenkins #3084] [Release 4.0.107] prepare release v4.0.107 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7f4d2eeaf..6220760db 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.107-SNAPSHOT + 4.0.107 ../pom.xml From 8a259727d8d7a43df18ad03f08c00eacc1b39e53 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 24 Dec 2017 17:28:29 +0000 Subject: [PATCH 306/405] [WSO2 Release] [Jenkins #3084] [Release 4.0.107] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6220760db..83216391f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.107 + 4.0.108-SNAPSHOT ../pom.xml From a5caca4cf7c3f98be9ffe5ccb35492f9e95f9a46 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Jan 2018 02:17:00 +0000 Subject: [PATCH 307/405] [WSO2 Release] [Jenkins #3086] [Release 4.0.108] prepare release v4.0.108 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 83216391f..162eb2c0a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.108-SNAPSHOT + 4.0.108 ../pom.xml From 3317a9f3e8ce47532513dfc3205df91ce89ffac6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Jan 2018 02:17:15 +0000 Subject: [PATCH 308/405] [WSO2 Release] [Jenkins #3086] [Release 4.0.108] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 162eb2c0a..b1cd2751c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.108 + 4.0.109-SNAPSHOT ../pom.xml From 7af6858bba09df8e2079d5dd371908aa41876dff Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Jan 2018 05:58:20 +0000 Subject: [PATCH 309/405] [WSO2 Release] [Jenkins #3088] [Release 4.0.109] prepare release v4.0.109 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b1cd2751c..688d32625 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.109-SNAPSHOT + 4.0.109 ../pom.xml From 4db2d8b2d140daeb0d2e91085b7203fab2cec19e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Jan 2018 05:58:33 +0000 Subject: [PATCH 310/405] [WSO2 Release] [Jenkins #3088] [Release 4.0.109] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 688d32625..bc124e4cd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.109 + 4.0.110-SNAPSHOT ../pom.xml From 073fd5dea213dc69b98e4d762059e22e124bbbf0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 Jan 2018 04:58:23 +0000 Subject: [PATCH 311/405] [WSO2 Release] [Jenkins #3090] [Release 4.0.110] prepare release v4.0.110 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bc124e4cd..ae4f8f68f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.110-SNAPSHOT + 4.0.110 ../pom.xml From ad1b4bf54ff68a2fcbedc760de379d7056fe9425 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 Jan 2018 04:58:39 +0000 Subject: [PATCH 312/405] [WSO2 Release] [Jenkins #3090] [Release 4.0.110] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ae4f8f68f..80b0a1af7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.110 + 4.0.111-SNAPSHOT ../pom.xml From 4a1411a0214fd22e06d215af6d126a1a6fb65f06 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 Jan 2018 07:41:36 +0000 Subject: [PATCH 313/405] [WSO2 Release] [Jenkins #3092] [Release 4.0.111] prepare release v4.0.111 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 80b0a1af7..94d9b9fbf 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.111-SNAPSHOT + 4.0.111 ../pom.xml From ba07b50a3894817c4c0d52ca96c62ad6c5a1a203 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 Jan 2018 07:41:52 +0000 Subject: [PATCH 314/405] [WSO2 Release] [Jenkins #3092] [Release 4.0.111] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 94d9b9fbf..ae9fad393 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.111 + 4.0.112-SNAPSHOT ../pom.xml From 5f8aec7d4c315b0f6dddc732a128d6b235e26e70 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Jan 2018 09:02:58 +0000 Subject: [PATCH 315/405] [WSO2 Release] [Jenkins #3094] [Release 4.0.112] prepare release v4.0.112 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ae9fad393..bd704368d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.112-SNAPSHOT + 4.0.112 ../pom.xml From 68d223c4a705b38f80aefb2b9d02699ddaf0bfa5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Jan 2018 09:03:13 +0000 Subject: [PATCH 316/405] [WSO2 Release] [Jenkins #3094] [Release 4.0.112] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bd704368d..6fd2e54fd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.112 + 4.0.113-SNAPSHOT ../pom.xml From d068a57e835d77f17d290b13de26de4c119d6a28 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Jan 2018 14:20:44 +0000 Subject: [PATCH 317/405] [WSO2 Release] [Jenkins #3096] [Release 4.0.113] prepare release v4.0.113 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6fd2e54fd..94a2ae18f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.113-SNAPSHOT + 4.0.113 ../pom.xml From 539cf699e5e5f1b174417cfe231281af2ad3dd44 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Jan 2018 14:21:00 +0000 Subject: [PATCH 318/405] [WSO2 Release] [Jenkins #3096] [Release 4.0.113] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 94a2ae18f..b35af30b6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.113 + 4.0.114-SNAPSHOT ../pom.xml From b44190b1ec55dd5557fa019e5872e13bd16f9748 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 03:03:34 +0000 Subject: [PATCH 319/405] [WSO2 Release] [Jenkins #3098] [Release 4.0.114] prepare release v4.0.114 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b35af30b6..615c2d1aa 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.114-SNAPSHOT + 4.0.114 ../pom.xml From 30ce54a257f437f0f27f4e4f484ae8e66b1fcb56 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 03:03:47 +0000 Subject: [PATCH 320/405] [WSO2 Release] [Jenkins #3098] [Release 4.0.114] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 615c2d1aa..582362392 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.114 + 4.0.115-SNAPSHOT ../pom.xml From 2f1467bf9e1503f36cca0c7449b8927e4a54234e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 12:42:41 +0000 Subject: [PATCH 321/405] [WSO2 Release] [Jenkins #3100] [Release 4.0.115] prepare release v4.0.115 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 582362392..2c7861b6a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.115-SNAPSHOT + 4.0.115 ../pom.xml From 9f1b624cc40882db07fb6f472591e7fbd0691c26 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 12:42:55 +0000 Subject: [PATCH 322/405] [WSO2 Release] [Jenkins #3100] [Release 4.0.115] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2c7861b6a..f5d3f6a7b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.115 + 4.0.116-SNAPSHOT ../pom.xml From fd9edb7be6c2abf8a88e24d43d1592fde90d58fa Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 13:23:47 +0000 Subject: [PATCH 323/405] [WSO2 Release] [Jenkins #3102] [Release 4.0.116] prepare release v4.0.116 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f5d3f6a7b..d1169850d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.116-SNAPSHOT + 4.0.116 ../pom.xml From fae3b9d4778c89c51d28293130428fd8b22473aa Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 13:24:02 +0000 Subject: [PATCH 324/405] [WSO2 Release] [Jenkins #3102] [Release 4.0.116] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d1169850d..672654e27 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.116 + 4.0.117-SNAPSHOT ../pom.xml From f3464fedb04ba6d28321925dd10260fd78cbb3af Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Jan 2018 05:49:01 +0000 Subject: [PATCH 325/405] [WSO2 Release] [Jenkins #3104] [Release 4.0.117] prepare release v4.0.117 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 672654e27..65aefc9ee 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.117-SNAPSHOT + 4.0.117 ../pom.xml From d380fe6d0434605a5be7c7995a7cee5802cbea58 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Jan 2018 05:49:15 +0000 Subject: [PATCH 326/405] [WSO2 Release] [Jenkins #3104] [Release 4.0.117] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 65aefc9ee..6c64c6571 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.117 + 4.0.118-SNAPSHOT ../pom.xml From 3d294e8a2bca9ecb79a14ec1887ee04ff2b183d0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 26 Jan 2018 08:59:09 +0000 Subject: [PATCH 327/405] [WSO2 Release] [Jenkins #3106] [Release 4.0.118] prepare release v4.0.118 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6c64c6571..c029a122a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.118-SNAPSHOT + 4.0.118 ../pom.xml From a83f4bff2fba04241d5a2f4d34b320eb0d8bf69f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 26 Jan 2018 08:59:23 +0000 Subject: [PATCH 328/405] [WSO2 Release] [Jenkins #3106] [Release 4.0.118] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c029a122a..efe8f540a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.118 + 4.0.119-SNAPSHOT ../pom.xml From fcd1dd767c08c8937fb09ea80e34b1bb267ca412 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 27 Jan 2018 04:33:26 +0000 Subject: [PATCH 329/405] [WSO2 Release] [Jenkins #3108] [Release 4.0.119] prepare release v4.0.119 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index efe8f540a..4a44a6837 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.119-SNAPSHOT + 4.0.119 ../pom.xml From a499462737a789a156768e09d6f1744f5edc1fd5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 27 Jan 2018 04:33:41 +0000 Subject: [PATCH 330/405] [WSO2 Release] [Jenkins #3108] [Release 4.0.119] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4a44a6837..735c335fe 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.119 + 4.0.120-SNAPSHOT ../pom.xml From b2a1f8d72db616878cf3631238a3efe8031491bc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 28 Jan 2018 15:29:10 +0000 Subject: [PATCH 331/405] [WSO2 Release] [Jenkins #3110] [Release 4.0.120] prepare release v4.0.120 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 735c335fe..d485238db 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.120-SNAPSHOT + 4.0.120 ../pom.xml From d93b54e930d4f9f4e71f038daeeefc2b6ee0d19b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 28 Jan 2018 15:29:25 +0000 Subject: [PATCH 332/405] [WSO2 Release] [Jenkins #3110] [Release 4.0.120] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d485238db..aca75bfcb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.120 + 4.0.121-SNAPSHOT ../pom.xml From 08611ae9b4a6d7d9e32b96dcc704d4254aad7859 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 05:35:54 +0000 Subject: [PATCH 333/405] [WSO2 Release] [Jenkins #3112] [Release 4.0.121] prepare release v4.0.121 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aca75bfcb..f872d67f0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.121-SNAPSHOT + 4.0.121 ../pom.xml From 89bf84fb5d8c0e6300c5b3cc63141b5f6fe49c0a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 05:36:09 +0000 Subject: [PATCH 334/405] [WSO2 Release] [Jenkins #3112] [Release 4.0.121] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f872d67f0..5a0fa2a37 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.121 + 4.0.122-SNAPSHOT ../pom.xml From fae913fcf1e581641d5c11385c7655a7c4bb49d4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 11:24:07 +0000 Subject: [PATCH 335/405] [WSO2 Release] [Jenkins #3114] [Release 4.0.122] prepare release v4.0.122 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5a0fa2a37..7141471ca 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.122-SNAPSHOT + 4.0.122 ../pom.xml From 04c7805134a004eeb1281d30cebcf5521cd74477 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 11:24:22 +0000 Subject: [PATCH 336/405] [WSO2 Release] [Jenkins #3114] [Release 4.0.122] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7141471ca..e15a7c170 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.122 + 4.0.123-SNAPSHOT ../pom.xml From 53b5d6798e624a000ee89a5076b427b645f0167c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 11:53:19 +0000 Subject: [PATCH 337/405] [WSO2 Release] [Jenkins #3116] [Release 4.0.123] prepare release v4.0.123 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e15a7c170..1efe8794d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.123-SNAPSHOT + 4.0.123 ../pom.xml From 69a025913fe933b06a46db9c090c77040ca76df2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 11:53:35 +0000 Subject: [PATCH 338/405] [WSO2 Release] [Jenkins #3116] [Release 4.0.123] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1efe8794d..3fba0bb52 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.123 + 4.0.124-SNAPSHOT ../pom.xml From c5cd3e9b4bf0920c2af81cb22668636456e47e70 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 12:43:38 +0000 Subject: [PATCH 339/405] [WSO2 Release] [Jenkins #3118] [Release 4.0.124] prepare release v4.0.124 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3fba0bb52..b243164f1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.124-SNAPSHOT + 4.0.124 ../pom.xml From 78453cc9583134946a3ebcfff61d1079071c4b83 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 12:43:53 +0000 Subject: [PATCH 340/405] [WSO2 Release] [Jenkins #3118] [Release 4.0.124] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b243164f1..a7686e652 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.124 + 4.0.125-SNAPSHOT ../pom.xml From 644b7f142380f64de3cccda5854655035cbe13b9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 1 Feb 2018 06:16:37 +0000 Subject: [PATCH 341/405] [WSO2 Release] [Jenkins #3120] [Release 4.0.125] prepare release v4.0.125 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a7686e652..63f498ec2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.125-SNAPSHOT + 4.0.125 ../pom.xml From 27d063862b7dcd6dfbfcbfe731e61e25962c1a2c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 1 Feb 2018 06:16:51 +0000 Subject: [PATCH 342/405] [WSO2 Release] [Jenkins #3120] [Release 4.0.125] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 63f498ec2..05f183258 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.125 + 4.0.126-SNAPSHOT ../pom.xml From 72823fd34b17de14a125a18b2f60eacfe12de224 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 6 Feb 2018 15:10:14 +0000 Subject: [PATCH 343/405] [WSO2 Release] [Jenkins #3122] [Release 4.0.126] prepare release v4.0.126 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 05f183258..4c1a11592 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.126-SNAPSHOT + 4.0.126 ../pom.xml From 021b9947699b3473d160ed2811d8987ded50d817 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 6 Feb 2018 15:10:29 +0000 Subject: [PATCH 344/405] [WSO2 Release] [Jenkins #3122] [Release 4.0.126] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4c1a11592..884f02c05 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.126 + 4.0.127-SNAPSHOT ../pom.xml From 1cc32980d56b527b6c6442aafa83a09df3ac396b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Feb 2018 04:00:36 +0000 Subject: [PATCH 345/405] [WSO2 Release] [Jenkins #3124] [Release 4.0.127] prepare release v4.0.127 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 884f02c05..e4a94cc9f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.127-SNAPSHOT + 4.0.127 ../pom.xml From 3f7cde40ee1d9002081bad673e03e082f9d58044 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Feb 2018 04:00:51 +0000 Subject: [PATCH 346/405] [WSO2 Release] [Jenkins #3124] [Release 4.0.127] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e4a94cc9f..efa7761c3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.127 + 4.0.128-SNAPSHOT ../pom.xml From fb551d44ea0494830f5a57d0310629c8e39706d1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 18 Feb 2018 07:19:52 +0000 Subject: [PATCH 347/405] [WSO2 Release] [Jenkins #3126] [Release 4.0.128] prepare release v4.0.128 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index efa7761c3..f4ad5581e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.128-SNAPSHOT + 4.0.128 ../pom.xml From 8129c6944fbf4050ebe2f4d27197617ea824b918 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 18 Feb 2018 07:20:07 +0000 Subject: [PATCH 348/405] [WSO2 Release] [Jenkins #3126] [Release 4.0.128] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f4ad5581e..e118cca85 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.128 + 4.0.129-SNAPSHOT ../pom.xml From bbd013f497ea08649ac230420cdf6a5e046b70f9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 22 Feb 2018 10:24:10 +0000 Subject: [PATCH 349/405] [WSO2 Release] [Jenkins #3128] [Release 4.0.129] prepare release v4.0.129 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e118cca85..0f6d8324c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.129-SNAPSHOT + 4.0.129 ../pom.xml From c876d2107bca425559e7b01245840114f726b2fe Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 22 Feb 2018 10:24:20 +0000 Subject: [PATCH 350/405] [WSO2 Release] [Jenkins #3128] [Release 4.0.129] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0f6d8324c..5c14f3456 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.129 + 4.0.130-SNAPSHOT ../pom.xml From 508e4527481b2da12602b1717ec3f41b4ed2c9e0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 24 Feb 2018 03:44:11 +0000 Subject: [PATCH 351/405] [WSO2 Release] [Jenkins #3130] [Release 4.0.130] prepare release v4.0.130 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5c14f3456..6fb8b9135 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.130-SNAPSHOT + 4.0.130 ../pom.xml From 0cde78880afd08c73c2021b7264474ee3b31d62f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 24 Feb 2018 03:44:21 +0000 Subject: [PATCH 352/405] [WSO2 Release] [Jenkins #3130] [Release 4.0.130] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6fb8b9135..06468f579 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.130 + 4.0.131-SNAPSHOT ../pom.xml From 24270c30095c6096a542cd30bb12f86fbc67c2c0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 25 Feb 2018 11:03:00 +0000 Subject: [PATCH 353/405] [WSO2 Release] [Jenkins #3132] [Release 4.0.131] prepare release v4.0.131 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 06468f579..b91bb0598 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.131-SNAPSHOT + 4.0.131 ../pom.xml From 879f0d428c714ebae2e07c06587f169576044d78 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 25 Feb 2018 11:03:12 +0000 Subject: [PATCH 354/405] [WSO2 Release] [Jenkins #3132] [Release 4.0.131] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b91bb0598..fc31a50aa 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.131 + 4.0.132-SNAPSHOT ../pom.xml From 4ccdc47bcfc1585c34cae150661d254db4aa0b3e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Feb 2018 14:30:43 +0000 Subject: [PATCH 355/405] [WSO2 Release] [Jenkins #3134] [Release 4.0.132] prepare release v4.0.132 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fc31a50aa..8c0b11d3d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.132-SNAPSHOT + 4.0.132 ../pom.xml From c1e010018b0e4a72fee7e56d3c547d7334300261 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Feb 2018 14:30:53 +0000 Subject: [PATCH 356/405] [WSO2 Release] [Jenkins #3134] [Release 4.0.132] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8c0b11d3d..ddb81fde1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.132 + 4.0.133-SNAPSHOT ../pom.xml From 2adc8a7a7dada23ce7ebd6db8d673c199f89c7f0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Feb 2018 17:49:43 +0000 Subject: [PATCH 357/405] [WSO2 Release] [Jenkins #3136] [Release 4.0.133] prepare release v4.0.133 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ddb81fde1..e07703241 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.133-SNAPSHOT + 4.0.133 ../pom.xml From b0a29926c3608563375636e16264d93cb43fbd1f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Feb 2018 17:49:53 +0000 Subject: [PATCH 358/405] [WSO2 Release] [Jenkins #3136] [Release 4.0.133] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e07703241..b159afac9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.133 + 4.0.134-SNAPSHOT ../pom.xml From cf410b9edeff32a7b0adbf0a788990b4b2a820e0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 1 Mar 2018 18:27:51 +0000 Subject: [PATCH 359/405] [WSO2 Release] [Jenkins #3138] [Release 4.0.134] prepare release v4.0.134 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b159afac9..0eaf6cbd1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.134-SNAPSHOT + 4.0.134 ../pom.xml From 2ee630834f061aa816bd2d12c5abf7dae5d297a7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 1 Mar 2018 18:28:02 +0000 Subject: [PATCH 360/405] [WSO2 Release] [Jenkins #3138] [Release 4.0.134] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0eaf6cbd1..9079ffe75 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.134 + 4.0.135-SNAPSHOT ../pom.xml From fc6a0b499cfe120f3b66fdf1056145fd24cd0ff0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 3 Mar 2018 16:48:22 +0000 Subject: [PATCH 361/405] [WSO2 Release] [Jenkins #3140] [Release 4.0.135] prepare release v4.0.135 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9079ffe75..dab575d48 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.135-SNAPSHOT + 4.0.135 ../pom.xml From a7452c46f0d1ab77c82c70fd881267b654959468 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 3 Mar 2018 16:48:32 +0000 Subject: [PATCH 362/405] [WSO2 Release] [Jenkins #3140] [Release 4.0.135] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dab575d48..b125a25e1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.135 + 4.0.136-SNAPSHOT ../pom.xml From 6e4ae66814a495f382015af1e2778801e43ce2bf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 3 Mar 2018 20:26:23 +0000 Subject: [PATCH 363/405] [WSO2 Release] [Jenkins #3142] [Release 4.0.136] prepare release v4.0.136 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b125a25e1..e9096312a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.136-SNAPSHOT + 4.0.136 ../pom.xml From 7ad4a35d22d842e9bfa9ed3f23a8ab46b10e1376 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 3 Mar 2018 20:26:33 +0000 Subject: [PATCH 364/405] [WSO2 Release] [Jenkins #3142] [Release 4.0.136] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e9096312a..c3a6033dd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.136 + 4.0.137-SNAPSHOT ../pom.xml From 9172140ff1749337dbb584dbc2d4624b1cf24083 Mon Sep 17 00:00:00 2001 From: geethkokila Date: Mon, 12 Mar 2018 16:28:28 +0530 Subject: [PATCH 365/405] Updating the version to 4.1.0 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index c3a6033dd..9056e04bf 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.137-SNAPSHOT + 4.1.0-SNAPSHOT ../pom.xml @@ -124,4 +124,4 @@ - \ No newline at end of file + From d91997df9b4dac8836e18fb7f2bf19ad93818151 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Mar 2018 11:34:53 +0000 Subject: [PATCH 366/405] [WSO2 Release] [Jenkins #3144] [Release 4.1.0] prepare release v4.1.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9056e04bf..06c93a35a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.0-SNAPSHOT + 4.1.0 ../pom.xml From 281a40b03593720dc0cc494ba8aff11a484232bb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Mar 2018 11:35:05 +0000 Subject: [PATCH 367/405] [WSO2 Release] [Jenkins #3144] [Release 4.1.0] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 06c93a35a..677edb049 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.0 + 4.1.1-SNAPSHOT ../pom.xml From 0735518f413be4d3e817f4ee2f469e33f6edff1c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 13 Mar 2018 05:46:38 +0000 Subject: [PATCH 368/405] [WSO2 Release] [Jenkins #3146] [Release 4.1.1] prepare release v4.1.1 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 677edb049..0a526d779 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.1-SNAPSHOT + 4.1.1 ../pom.xml From 78f7c8c2e5727367b5280a21566a44bf6a5346e8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 13 Mar 2018 05:46:49 +0000 Subject: [PATCH 369/405] [WSO2 Release] [Jenkins #3146] [Release 4.1.1] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0a526d779..d54319063 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.1 + 4.1.2-SNAPSHOT ../pom.xml From fb27608261874303bfb17f8b42cb4ec20e5644e7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 14 Mar 2018 07:59:38 +0000 Subject: [PATCH 370/405] [WSO2 Release] [Jenkins #3148] [Release 4.1.2] prepare release v4.1.2 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d54319063..5c5d31e58 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.2-SNAPSHOT + 4.1.2 ../pom.xml From ff435131331e6400436c31eb91cf2985850c6e45 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 14 Mar 2018 07:59:49 +0000 Subject: [PATCH 371/405] [WSO2 Release] [Jenkins #3148] [Release 4.1.2] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5c5d31e58..6856803ee 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.2 + 4.1.3-SNAPSHOT ../pom.xml From 7e2a207e1ab9e21cbe7e22b2c3399c25b25fd962 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Mar 2018 09:05:24 +0000 Subject: [PATCH 372/405] [WSO2 Release] [Jenkins #3150] [Release 4.1.3] prepare release v4.1.3 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6856803ee..1cee643d7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.3-SNAPSHOT + 4.1.3 ../pom.xml From 2c901a9568a513b52c583dd5fa58307eeb9e59b2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Mar 2018 09:05:34 +0000 Subject: [PATCH 373/405] [WSO2 Release] [Jenkins #3150] [Release 4.1.3] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1cee643d7..d6d315321 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.3 + 4.1.4-SNAPSHOT ../pom.xml From 55e21ffa55ac641af65160f6bcbdff47aa007fe3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 16 Mar 2018 12:06:49 +0000 Subject: [PATCH 374/405] [WSO2 Release] [Jenkins #3152] [Release 4.1.4] prepare release v4.1.4 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d6d315321..8e0f2eab3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.4-SNAPSHOT + 4.1.4 ../pom.xml From acc8f6cd62f6ea0c38f25c98f397705c7cc835b5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 16 Mar 2018 12:06:59 +0000 Subject: [PATCH 375/405] [WSO2 Release] [Jenkins #3152] [Release 4.1.4] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e0f2eab3..c3a73cf72 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.4 + 4.1.5-SNAPSHOT ../pom.xml From bef1df21ca4842116bdd56f6309832685d2d243d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 21 Mar 2018 04:31:01 +0000 Subject: [PATCH 376/405] [WSO2 Release] [Jenkins #3154] [Release 4.1.5] prepare release v4.1.5 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c3a73cf72..cd008e2fb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.5-SNAPSHOT + 4.1.5 ../pom.xml From 88b1e4742c92c6ec404a34a42230327c0ed99f79 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 21 Mar 2018 04:31:13 +0000 Subject: [PATCH 377/405] [WSO2 Release] [Jenkins #3154] [Release 4.1.5] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cd008e2fb..1a8d12f73 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.5 + 4.1.6-SNAPSHOT ../pom.xml From d9f18126a8e60e8a3292ce66a1588910297f4de2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 5 Apr 2018 13:49:53 +0000 Subject: [PATCH 378/405] [WSO2 Release] [Jenkins #3159] [Release 4.1.6] prepare release v4.1.6 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1a8d12f73..dfa7bbc30 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.6-SNAPSHOT + 4.1.6 ../pom.xml From 56bc4169ad372f5b6136cadce264bda6bd211a70 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 5 Apr 2018 13:50:04 +0000 Subject: [PATCH 379/405] [WSO2 Release] [Jenkins #3159] [Release 4.1.6] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dfa7bbc30..ccce924e4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.6 + 4.1.7-SNAPSHOT ../pom.xml From 5d90618bec8cb3fbed6b48b7173c4985cff2b417 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 13 Aug 2018 08:48:16 +0000 Subject: [PATCH 380/405] [maven-release-plugin] prepare release v4.1.7 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ccce924e4..05797f4bd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.7-SNAPSHOT + 4.1.7 ../pom.xml From 3a2ee27e950eff5c748d2c90e29d8a45c95e8f18 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 13 Aug 2018 08:48:27 +0000 Subject: [PATCH 381/405] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 05797f4bd..e3329478f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.7 + 4.1.8-SNAPSHOT ../pom.xml From 784bf121dd2a28aee9452c2ec33899664d1bef53 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 22 Aug 2018 15:06:51 +0000 Subject: [PATCH 382/405] [maven-release-plugin] prepare release v4.1.8 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e3329478f..e664d2b9f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.8-SNAPSHOT + 4.1.8 ../pom.xml From 4ebe0195403b64270ad76abb1b1c6da1c6b4755b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 22 Aug 2018 15:07:02 +0000 Subject: [PATCH 383/405] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e664d2b9f..7d8e91d94 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.8 + 4.1.9-SNAPSHOT ../pom.xml From c54da827d8e52f2c2d303f9161a29d78b8e471ce Mon Sep 17 00:00:00 2001 From: Madhawa Perera Date: Tue, 18 Sep 2018 14:23:04 +0530 Subject: [PATCH 384/405] version bump from 4.1.9 to 4.1.11 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7d8e91d94..57586656a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.9-SNAPSHOT + 4.1.11-SNAPSHOT ../pom.xml From 44a8a46c628da2ffb259aa087127b2a8ed556bac Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 18 Sep 2018 09:24:03 +0000 Subject: [PATCH 385/405] [WSO2 Release] [Jenkins #3178] [Release 4.1.11] prepare release v4.1.11 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 57586656a..c0c662597 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.11-SNAPSHOT + 4.1.11 ../pom.xml From 3f87c682fe32344233d666e21f8a093e59dd2ae1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 18 Sep 2018 09:24:16 +0000 Subject: [PATCH 386/405] [WSO2 Release] [Jenkins #3178] [Release 4.1.11] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c0c662597..f5fbdc815 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.11 + 4.1.12-SNAPSHOT ../pom.xml From 00c10ade4bb95aeb288bf6468f7e12a821c119dc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 Oct 2018 05:27:27 +0000 Subject: [PATCH 387/405] [WSO2 Release] [Jenkins #3180] [Release 4.1.12] prepare release v4.1.12 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f5fbdc815..36872c078 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.12-SNAPSHOT + 4.1.12 ../pom.xml From cf83eb6df04fdd95b838d0c9ded468462bd3cef6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 Oct 2018 05:27:38 +0000 Subject: [PATCH 388/405] [WSO2 Release] [Jenkins #3180] [Release 4.1.12] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 36872c078..812bff3c8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.12 + 4.1.13-SNAPSHOT ../pom.xml From c67e228e791b6e9ff3164b7fdeac1cef2b17e29f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Oct 2018 13:04:41 +0000 Subject: [PATCH 389/405] [WSO2 Release] [Jenkins #3182] [Release 4.1.13] prepare release v4.1.13 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 812bff3c8..bd24a706d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.13-SNAPSHOT + 4.1.13 ../pom.xml From e5d94b8abf04dff7a817412601e493461ec5ac4f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Oct 2018 13:04:53 +0000 Subject: [PATCH 390/405] [WSO2 Release] [Jenkins #3182] [Release 4.1.13] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bd24a706d..b1781b473 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.13 + 4.1.14-SNAPSHOT ../pom.xml From 9baffb2df8d66e36e935bef261127908a267e83f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Oct 2018 17:58:14 +0000 Subject: [PATCH 391/405] [WSO2 Release] [Jenkins #3184] [Release 4.1.14] prepare release v4.1.14 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b1781b473..6fec82652 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.14-SNAPSHOT + 4.1.14 ../pom.xml From ac3ccc010a39e48707c2dd92724718b9ba20a6fe Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Oct 2018 17:58:26 +0000 Subject: [PATCH 392/405] [WSO2 Release] [Jenkins #3184] [Release 4.1.14] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6fec82652..176df2307 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.14 + 4.1.15-SNAPSHOT ../pom.xml From 830a9515f9d300602c326a4ebcc4fa46548b4a62 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Oct 2018 06:40:17 +0000 Subject: [PATCH 393/405] [WSO2 Release] [Jenkins #3186] [Release 4.1.15] prepare release v4.1.15 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 176df2307..4cd8f7a03 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.15-SNAPSHOT + 4.1.15 ../pom.xml From a19fffd17fb848eb9e46b3fcc97bb13bcbb9cb24 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Oct 2018 06:40:28 +0000 Subject: [PATCH 394/405] [WSO2 Release] [Jenkins #3186] [Release 4.1.15] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4cd8f7a03..4b5c5e615 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.15 + 4.1.16-SNAPSHOT ../pom.xml From d01d31befbd651621542822df9fcc441921b5917 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 05:47:15 +0000 Subject: [PATCH 395/405] [WSO2 Release] [Jenkins #3190] [Release 4.1.16] prepare release v4.1.16 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4b5c5e615..f2354b139 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.16-SNAPSHOT + 4.1.16 ../pom.xml From e0aa11025c7a3b61230de3d39dd6b099b0f31c3a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 05:47:27 +0000 Subject: [PATCH 396/405] [WSO2 Release] [Jenkins #3190] [Release 4.1.16] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f2354b139..9b7d738b4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.16 + 4.1.17-SNAPSHOT ../pom.xml From 58a0e75e355b115d1b910b41a33e21e023aafe2f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 16:30:51 +0000 Subject: [PATCH 397/405] [WSO2 Release] [Jenkins #3192] [Release 4.1.17] prepare release v4.1.17 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9b7d738b4..77f087802 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.17-SNAPSHOT + 4.1.17 ../pom.xml From 10f3c3881f1c8ecea106c4e5d5cebb09ae9ed604 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 16:31:03 +0000 Subject: [PATCH 398/405] [WSO2 Release] [Jenkins #3192] [Release 4.1.17] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 77f087802..4ef9e73ea 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.17 + 4.1.18-SNAPSHOT ../pom.xml From d97db3765e033b3272358c181483217f9d0447dd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 19:46:29 +0000 Subject: [PATCH 399/405] [WSO2 Release] [Jenkins #3194] [Release 4.1.18] prepare release v4.1.18 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4ef9e73ea..c4c21807a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.18-SNAPSHOT + 4.1.18 ../pom.xml From 8e80199872cdb72de70149de405aba646005e2ab Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 19:46:42 +0000 Subject: [PATCH 400/405] [WSO2 Release] [Jenkins #3194] [Release 4.1.18] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c4c21807a..56955aede 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.18 + 4.1.19-SNAPSHOT ../pom.xml From 51024a8df27231ad81acd94fb8d576a1cf475c81 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 25 Oct 2018 09:10:34 +0000 Subject: [PATCH 401/405] [WSO2 Release] [Jenkins #3196] [Release 4.1.19] prepare release v4.1.19 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 56955aede..7b8918751 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.19-SNAPSHOT + 4.1.19 ../pom.xml From da28677aa93931735a3a49b6f026f2733cbba492 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 25 Oct 2018 09:10:46 +0000 Subject: [PATCH 402/405] [WSO2 Release] [Jenkins #3196] [Release 4.1.19] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7b8918751..8c74dac8d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.19 + 4.1.20-SNAPSHOT ../pom.xml From e195eb776c5c6be41c3b05dec622ec2f78e6f05c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 31 Oct 2018 06:09:58 +0000 Subject: [PATCH 403/405] [WSO2 Release] [Jenkins #3198] [Release 4.1.20] prepare release v4.1.20 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8c74dac8d..22f5dad99 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.20-SNAPSHOT + 4.1.20 ../pom.xml From 90bd853fa503c1fe95dc1d8a9edf88cd59e0eff8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 31 Oct 2018 06:10:10 +0000 Subject: [PATCH 404/405] [WSO2 Release] [Jenkins #3198] [Release 4.1.20] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 22f5dad99..fea934676 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.20 + 4.1.21-SNAPSHOT ../pom.xml From 500c48dd8f58bbb11a8c3f21980a2b31551c659f Mon Sep 17 00:00:00 2001 From: Amalka Subasinghe Date: Thu, 16 Feb 2023 10:41:19 +0530 Subject: [PATCH 405/405] siddi execution component --- .../org.wso2.extension.siddhi.execution.json/pom.xml | 0 .../siddhi/execution/json/GetArrayFunctionExtension.java | 0 .../siddhi/execution/json/GetPropertyFunctionExtension.java | 0 .../src}/main/resources/json.siddhiext | 0 .../wso2/extension/siddhi/execution/json/ExtensionTestCase.java | 0 .../siddhi/execution/json/test/util/SiddhiTestHelper.java | 0 .../src}/test/resources/log4j.properties | 0 .../src}/test/resources/testng.xml | 0 8 files changed, 0 insertions(+), 0 deletions(-) rename pom.xml => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/pom.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src}/main/java/org/wso2/extension/siddhi/execution/json/GetArrayFunctionExtension.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src}/main/java/org/wso2/extension/siddhi/execution/json/GetPropertyFunctionExtension.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src}/main/resources/json.siddhiext (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src}/test/java/org/wso2/extension/siddhi/execution/json/ExtensionTestCase.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src}/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src}/test/resources/log4j.properties (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src}/test/resources/testng.xml (100%) diff --git a/pom.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/pom.xml similarity index 100% rename from pom.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/pom.xml diff --git a/src/main/java/org/wso2/extension/siddhi/execution/json/GetArrayFunctionExtension.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/main/java/org/wso2/extension/siddhi/execution/json/GetArrayFunctionExtension.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/execution/json/GetArrayFunctionExtension.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/main/java/org/wso2/extension/siddhi/execution/json/GetArrayFunctionExtension.java diff --git a/src/main/java/org/wso2/extension/siddhi/execution/json/GetPropertyFunctionExtension.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/main/java/org/wso2/extension/siddhi/execution/json/GetPropertyFunctionExtension.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/execution/json/GetPropertyFunctionExtension.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/main/java/org/wso2/extension/siddhi/execution/json/GetPropertyFunctionExtension.java diff --git a/src/main/resources/json.siddhiext b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/main/resources/json.siddhiext similarity index 100% rename from src/main/resources/json.siddhiext rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/main/resources/json.siddhiext diff --git a/src/test/java/org/wso2/extension/siddhi/execution/json/ExtensionTestCase.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/test/java/org/wso2/extension/siddhi/execution/json/ExtensionTestCase.java similarity index 100% rename from src/test/java/org/wso2/extension/siddhi/execution/json/ExtensionTestCase.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/test/java/org/wso2/extension/siddhi/execution/json/ExtensionTestCase.java diff --git a/src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java similarity index 100% rename from src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java diff --git a/src/test/resources/log4j.properties b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/test/resources/log4j.properties similarity index 100% rename from src/test/resources/log4j.properties rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/test/resources/log4j.properties diff --git a/src/test/resources/testng.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/test/resources/testng.xml similarity index 100% rename from src/test/resources/testng.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/test/resources/testng.xml