Skip to content

Commit

Permalink
Merge pull request #17 from lasanthaS/siddhi-4.x.x
Browse files Browse the repository at this point in the history
Bump component versions
  • Loading branch information
lasanthaS authored Jun 18, 2019
2 parents 91c1ac7 + 6ad1395 commit 4d14bf8
Show file tree
Hide file tree
Showing 6 changed files with 195 additions and 65 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ Please refer the [Getting Started](getting-started) section.

## How to Contribute

* Please report issues at <a target="_blank" href="https://github.com/wso2/siddhi-sdk/issues">GitHub Issue
* Please report issues at <a target="_blank" href="https://github.com/siddhi-io/siddhi-sdk/issues">GitHub Issue
Tracker</a>.

* Send your contributions as pull requests to <a target="_blank" href="https://github.com/wso2/siddhi-sdk/tree/master">master branch</a>.
* Send your contributions as pull requests to <a target="_blank" href="https://github.com/siddhi-io/siddhi-sdk/tree/master">master branch</a>.

## Contact us

Expand Down
4 changes: 2 additions & 2 deletions getting-started/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Getting started

1. [Get familiar with Siddhi Language](https://wso2.github.io/siddhi/documentation/siddhi-quckstart-4.0/)
1. [Get familiar with Siddhi Language](https://siddhi-io.github.io/siddhi/documentation/siddhi-4.x/quckstart-4.x/)
2. [Building Siddhi SDK from the source.](build-from-source)
3. [Running a Siddhi file in command line.](run-a-siddhi-file)
4. [Using Siddhi-SDK with Intellij IDEA.](https://github.com/wso2/siddhi-plugin-idea/blob/master/README.md)
4. [Using Siddhi-SDK with Intellij IDEA.](https://github.com/siddhi-io/siddhi-plugin-idea/blob/master/README.md)

4 changes: 2 additions & 2 deletions getting-started/build-from-source/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and set the JAVA_HOME environment variable.

3) Clone the siddi-sdk using the following command.
```
git clone https://github.com/wso2/siddhi-sdk.git
git clone https://github.com/siddhi-io/siddhi-sdk.git
```

4) Navigate to the cloned repo using the following command.
Expand All @@ -20,6 +20,6 @@ cd siddhi-sdk
mvn clean install
```

6) Now the Siddhi SDK zip file (ex: siddhi-sdk-1.0.0-SNAPSHOT.zip) will be created inside the
6) Now the Siddhi SDK zip file (ex: siddhi-sdk-4.0.0-SNAPSHOT.zip) will be created inside the
{siddhi-sdk-home}/modules/siddhi-launcher/target/ . Unzip it.

4 changes: 2 additions & 2 deletions getting-started/run-a-siddhi-file/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
```
cd "{siddhi-sdk-home}\bin"
```
* {siddhi-sdk-home} is the path to the siddhi-sdk. ex:C:\siddhi-sdk-1.0.0-SNAPSHOT
* {siddhi-sdk-home} is the path to the siddhi-sdk. ex:C:\siddhi-sdk-4.0.0-SNAPSHOT

2) Run the Siddhi file using the following command.
```
Expand All @@ -23,7 +23,7 @@ file.
```
cd "{siddhi-sdk-home}/bin"
```
* {siddhi-sdk-home} is the path to the siddhi-sdk. ex:/home/username/siddhi-sdk-1.0.0-SNAPSHOT
* {siddhi-sdk-home} is the path to the siddhi-sdk. ex:/home/username/siddhi-sdk-4.0.0-SNAPSHOT

2) Run the Siddhi file using the following command.
```
Expand Down
70 changes: 69 additions & 1 deletion modules/siddhi-launcher/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.wso2.siddhi.sdk</groupId>
<artifactId>siddhi-sdk-parent</artifactId>
<version>1.1.1-SNAPSHOT</version>
<version>4.0.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>siddhi-launcher</artifactId>
Expand Down Expand Up @@ -119,6 +119,14 @@
<groupId>org.wso2.extension.siddhi.execution.tensorflow</groupId>
<artifactId>siddhi-execution-tensorflow</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.extension.siddhi.execution.env</groupId>
<artifactId>siddhi-execution-env</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.extension.siddhi.execution.json</groupId>
<artifactId>siddhi-execution-json</artifactId>
</dependency>
<!--IO Extensions-->
<dependency>
<groupId>org.wso2.extension.siddhi.io.jms</groupId>
Expand Down Expand Up @@ -152,6 +160,46 @@
<groupId>org.wso2.extension.siddhi.io.http</groupId>
<artifactId>siddhi-io-http</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.extension.siddhi.io.twitter</groupId>
<artifactId>siddhi-io-twitter</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.extension.siddhi.io.sqs</groupId>
<artifactId>siddhi-io-sqs</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.extension.siddhi.io.websocket</groupId>
<artifactId>siddhi-io-websocket</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.extension.siddhi.io.ibmmq</groupId>
<artifactId>siddhi-io-ibmmq</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.extension.siddhi.io.cdc</groupId>
<artifactId>siddhi-io-cdc</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.extension.siddhi.io.prometheus</groupId>
<artifactId>siddhi-io-prometheus</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.extension.siddhi.io.nats</groupId>
<artifactId>siddhi-io-nats</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.extension.siddhi.io.googlepubsub</groupId>
<artifactId>siddhi-io-googlepubsub</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.extension.siddhi.io.hl7</groupId>
<artifactId>siddhi-io-hl7</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.extension.siddhi.io.snmp</groupId>
<artifactId>siddhi-io-snmp</artifactId>
</dependency>
<!--Map Extensions-->
<!--Mapper Extensions-->
<dependency>
Expand All @@ -166,6 +214,10 @@
<groupId>org.wso2.extension.siddhi.map.json</groupId>
<artifactId>siddhi-map-json</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.extension.siddhi.map.avro</groupId>
<artifactId>siddhi-map-avro</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.extension.siddhi.map.text</groupId>
<artifactId>siddhi-map-text</artifactId>
Expand Down Expand Up @@ -199,6 +251,22 @@
<groupId>org.wso2.extension.siddhi.store.hbase</groupId>
<artifactId>siddhi-store-hbase</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.extension.siddhi.store.cassandra</groupId>
<artifactId>siddhi-store-cassandra</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.extension.siddhi.store.redis</groupId>
<artifactId>siddhi-store-redis</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.extension.siddhi.store.elasticsearch</groupId>
<artifactId>siddhi-store-elasticsearch</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.extension.siddhi.store.influxdb</groupId>
<artifactId>siddhi-store-influxdb</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.extension.siddhi.io.mqtt</groupId>
<artifactId>siddhi-io-mqtt</artifactId>
Expand Down
Loading

0 comments on commit 4d14bf8

Please sign in to comment.