Skip to content

Commit

Permalink
Merge pull request #945 from minudika/master
Browse files Browse the repository at this point in the history
Prepare for 4.4.0-beta2 release
  • Loading branch information
lasanthaS authored Mar 22, 2019
2 parents 86d5d14 + 9194444 commit fe25831
Show file tree
Hide file tree
Showing 28 changed files with 42 additions and 33 deletions.
8 changes: 7 additions & 1 deletion modules/distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>org.wso2.carbon.sp.parent</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -750,6 +750,12 @@
<version>${siddhi.store.elasticsearch.version}</version>
<type>jar</type>
</artifactItem>
<artifactItem>
<groupId>org.wso2.extension.siddhi.store.influxdb</groupId>
<artifactId>siddhi-store-influxdb</artifactId>
<version>${siddhi.store.influxdb.version}</version>
<type>jar</type>
</artifactItem>
<artifactItem>
<groupId>org.wso2.extension.siddhi.io.sqs</groupId>
<artifactId>siddhi-io-sqs</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion modules/integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>org.wso2.carbon.sp.parent</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/performance/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>org.wso2.carbon.sp.parent</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,16 @@ Testing the Sample:
9) Send event

Viewing the Results:
Navigate to the path defined by file.uri ({WSO2SPHome}/samples/artifacts/0038/files/sink), where you can see a .txt file named after the event (e.g., toffees.txt) and open it. You can see the data events that you sent:
Navigate to the path defined by file.uri ({WSO2SPHome}/samples/artifacts/0038/files/sink),
where you can see a .txt file named after the event (e.g., toffees.txt) and open it.
You can see the data events that you sent:
{"event":{"name":"toffees","amount":66.71}}
{"event":{"name":"toffees","amount":200.0}}
*/

define stream SweetProductionStream (name string, amount double);

@sink(type='file', @map(type='json'), file.uri='{WSO2SPHome}/samples/artifacts/0038/files/sink/{{name}}.txt')
@sink(type='file', @map(type='json'), file.uri='{WSO2SPHome}/samples/artifacts/PublishEventsToFile/files/sink/{{name}}.txt')
define stream LowProductionAlertStream (name string, amount double);

@info(name='query1')
Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/apim-event-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>sample-clients</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/ei-analytics-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>sample-clients</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/http-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>sample-clients</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/http-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>sample-clients</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/is-analytics-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>sample-clients</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/jms-consumer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>sample-clients</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/jms-producer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>sample-clients</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/kafka-avro-consumer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>sample-clients</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/kafka-consumer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>sample-clients</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/kafka-producer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>sample-clients</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/mqtt-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>sample-clients</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/mqtt-consumer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>sample-clients</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>org.wso2.carbon.sp.parent</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/prometheus-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>sample-clients</artifactId>
<groupId>org.wso2.sp</groupId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/rabbitmq-consumer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>sample-clients</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/rabbitmq-producer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>sample-clients</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/tcp-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>sample-clients</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/tcp-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>sample-clients</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/websocket-producer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>sample-clients</artifactId>
<groupId>org.wso2.sp</groupId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<name>WSO2 Stream Processor - Sample - WebSocket Client</name>
Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/websocket-receiver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>sample-clients</artifactId>
<groupId>org.wso2.sp</groupId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<name>WSO2 Stream Processor - Sample - WebSocket Consumer</name>
Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/wso2event-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>sample-clients</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/samples/sample-clients/wso2event-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>sample-clients</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.wso2.sp</groupId>
<artifactId>org.wso2.carbon.sp.parent</artifactId>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
11 changes: 6 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<groupId>org.wso2.sp</groupId>
<artifactId>org.wso2.carbon.sp.parent</artifactId>
<packaging>pom</packaging>
<version>4.4.1-beta-SNAPSHOT</version>
<version>4.4.0-beta2-SNAPSHOT</version>
<name>WSO2 Stream Processor - Parent</name>

<url>http://wso2.org</url>
Expand Down Expand Up @@ -1310,11 +1310,11 @@
</build>
<properties>

<carbon.analytics.version>2.0.496</carbon.analytics.version>
<carbon.analytics.version>2.0.497</carbon.analytics.version>
<siddhi.version>4.4.10</siddhi.version>

<carbon.analytics-common.version>6.1.1</carbon.analytics-common.version>
<analytics.solutions.version>1.0.32</analytics.solutions.version>
<analytics.solutions.version>1.0.34</analytics.solutions.version>
<!-- Maven plugins -->
<!--Bundle Plugin - Overridden from parent due to a bug in latest version related to capability providers-->
<maven.bundle.plugin.version>2.5.4</maven.bundle.plugin.version>
Expand Down Expand Up @@ -1343,7 +1343,7 @@
<carbon.deployment.version>5.2.0</carbon.deployment.version>

<carbon.datasources.version>1.1.4</carbon.datasources.version>
<carbon.metrics.version>2.3.7</carbon.metrics.version>
<carbon.metrics.version>2.3.8</carbon.metrics.version>
<carbon.jndi.version>1.0.5</carbon.jndi.version>

<carbon.cache.version>1.1.3</carbon.cache.version>
Expand All @@ -1359,7 +1359,7 @@

<antlr4.runtime.version>4.5.1.wso2v1</antlr4.runtime.version>
<!--Dashboard-->
<carbon.dashboards.version>4.0.56</carbon.dashboards.version>
<carbon.dashboards.version>4.0.57</carbon.dashboards.version>
<carbon.uis.version>0.19.7</carbon.uis.version>
<maven.exec.plugin.version>1.5.0</maven.exec.plugin.version>

Expand Down Expand Up @@ -1486,6 +1486,7 @@
<siddhi.store.cassandra.version>1.1.0</siddhi.store.cassandra.version>
<siddhi.store.redis.version>2.1.0</siddhi.store.redis.version>
<siddhi.store.elasticsearch.version>1.1.0</siddhi.store.elasticsearch.version>
<siddhi.store.influxdb.version>1.0.1</siddhi.store.influxdb.version>

<siddhi.script.js.version>4.1.0</siddhi.script.js.version>

Expand Down

0 comments on commit fe25831

Please sign in to comment.