Skip to content

Commit d4708ac

Browse files
authored
Merge pull request #24 from SlicingDice/feature/new-api-formats
Change client to match new api formats
2 parents f0ebbcf + 8956d39 commit d4708ac

File tree

17 files changed

+46986
-51594
lines changed

17 files changed

+46986
-51594
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
## [2.0.2]
44
### Updated
55
- Correct data extraction validator to accept columns: all
6+
- Add support for SQL queries on client
7+
- Adapt test queries to the changes on SlicingDice API
8+
- Change HTTP connection to be async
69

710
## [2.0.1]
811
### Updated

README.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SlicingDice Official Java Client (v2.0.1)
1+
# SlicingDice Official Java Client (v2.0.2)
22
### Build Status: [![CircleCI](https://circleci.com/gh/SlicingDice/slicingdice-java.svg?style=svg)](https://circleci.com/gh/SlicingDice/slicingdice-java)
33

44
Official Java client for [SlicingDice](http://www.slicingdice.com/), Data Warehouse and Analytics Database as a Service.
@@ -20,24 +20,23 @@ Whether you want to test the client installation or simply check more examples o
2020
In order to import SlicingDice's client on your application, you'll need
2121
to setup the following dependencies:
2222

23-
* [gson 2.3.2](https://github.com/google/gson)
24-
* [okhttp 3.2.0](http://square.github.io/okhttp/)
23+
* [json 20180130](https://github.com/stleary/JSON-java)
24+
* [async-http-client 2.4.2](https://github.com/AsyncHttpClient/async-http-client)
2525

2626

2727
In case you're using [Maven](https://maven.apache.org/) to manage packages,
2828
add this to your pom.xml:
2929

3030
```xml
3131
<dependency>
32-
<groupid>com.google.code.gson</groupid>
33-
<artifactid>gson</artifactid>
34-
<version>2.3.1</version>
32+
<groupId>org.asynchttpclient</groupId>
33+
<artifactId>async-http-client</artifactId>
34+
<version>2.4.2</version>
3535
</dependency>
36-
3736
<dependency>
38-
<groupid>com.squareup.okhttp3</groupid>
39-
<artifactid>okhttp</artifactid>
40-
<version>3.3.1</version>
37+
<groupId>org.json</groupId>
38+
<artifactId>json</artifactId>
39+
<version>20180130</version>
4140
</dependency>
4241
```
4342

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515

1616
<dependencies>
1717
<dependency>
18-
<groupId>com.squareup.okhttp3</groupId>
19-
<artifactId>okhttp</artifactId>
20-
<version>3.6.0</version>
18+
<groupId>org.asynchttpclient</groupId>
19+
<artifactId>async-http-client</artifactId>
20+
<version>2.4.2</version>
2121
</dependency>
2222
<dependency>
2323
<groupId>org.json</groupId>
2424
<artifactId>json</artifactId>
25-
<version>20160212</version>
25+
<version>20180130</version>
2626
</dependency>
2727
<dependency>
2828
<groupId>junit</groupId>
@@ -52,8 +52,8 @@
5252
<artifactId>maven-compiler-plugin</artifactId>
5353
<version>3.6.1</version>
5454
<configuration>
55-
<source>1.7</source>
56-
<target>1.7</target>
55+
<source>1.8</source>
56+
<target>1.8</target>
5757
</configuration>
5858
</plugin>
5959
<plugin>

0 commit comments

Comments
 (0)