|
23 | 23 | <dependencies> |
24 | 24 | <dependency> |
25 | 25 | <groupId>${project.parent.groupId}</groupId> |
26 | | - <artifactId>clickhouse-client</artifactId> |
| 26 | + <artifactId>clickhouse-data</artifactId> |
27 | 27 | <version>${revision}</version> |
28 | 28 | </dependency> |
| 29 | + |
| 30 | + <dependency> |
| 31 | + <groupId>org.roaringbitmap</groupId> |
| 32 | + <artifactId>RoaringBitmap</artifactId> |
| 33 | + <version>${roaring-bitmap.version}</version> |
| 34 | + </dependency> |
| 35 | + |
29 | 36 | <dependency> |
30 | 37 | <groupId>${project.parent.groupId}</groupId> |
31 | | - <artifactId>clickhouse-http-client</artifactId> |
| 38 | + <artifactId>clickhouse-client</artifactId> |
32 | 39 | <version>${revision}</version> |
33 | 40 | </dependency> |
| 41 | + |
34 | 42 | <dependency> |
35 | 43 | <groupId>org.slf4j</groupId> |
36 | 44 | <artifactId>slf4j-api</artifactId> |
|
41 | 49 | <artifactId>httpclient5</artifactId> |
42 | 50 | <version>${apache.httpclient.version}</version> |
43 | 51 | </dependency> |
44 | | - <dependency> |
45 | | - <groupId>com.github.luben</groupId> |
46 | | - <artifactId>zstd-jni</artifactId> |
47 | | - <optional>true</optional> |
48 | | - </dependency> |
| 52 | + |
49 | 53 | <dependency> |
50 | 54 | <groupId>org.lz4</groupId> |
51 | 55 | <artifactId>lz4-pure-java</artifactId> |
52 | 56 | <version>${lz4.version}</version> |
53 | 57 | </dependency> |
| 58 | + |
54 | 59 | <dependency> |
55 | 60 | <groupId>org.apache.commons</groupId> |
56 | 61 | <artifactId>commons-compress</artifactId> |
57 | 62 | <version>${compress.version}</version> |
58 | 63 | </dependency> |
| 64 | + |
59 | 65 | <dependency> |
60 | 66 | <groupId>org.ow2.asm</groupId> |
61 | 67 | <artifactId>asm</artifactId> |
62 | 68 | <version>9.7</version> |
63 | 69 | </dependency> |
| 70 | + |
64 | 71 | <dependency> |
65 | 72 | <groupId>com.fasterxml.jackson.core</groupId> |
66 | 73 | <artifactId>jackson-core</artifactId> |
67 | 74 | <version>2.17.2</version> |
68 | 75 | </dependency> |
69 | 76 |
|
70 | 77 | <!-- Test Dependencies --> |
| 78 | + <dependency> |
| 79 | + <groupId>${project.parent.groupId}</groupId> |
| 80 | + <artifactId>clickhouse-http-client</artifactId> |
| 81 | + <version>${revision}</version> |
| 82 | + <scope>test</scope> |
| 83 | + </dependency> |
71 | 84 | <dependency> |
72 | 85 | <groupId>com.google.code.gson</groupId> |
73 | 86 | <artifactId>gson</artifactId> |
|
81 | 94 | <scope>test</scope> |
82 | 95 | <version>2.17.2</version> |
83 | 96 | </dependency> |
84 | | - <!-- necessary for Java 9+ --> |
85 | | - <dependency> |
86 | | - <groupId>org.apache.tomcat</groupId> |
87 | | - <artifactId>annotations-api</artifactId> |
88 | | - <scope>provided</scope> |
89 | | - </dependency> |
90 | 97 |
|
91 | 98 | <!-- Test dependencies --> |
92 | 99 | <dependency> |
|
119 | 126 | <version>${testng.version}</version> |
120 | 127 | <scope>test</scope> |
121 | 128 | </dependency> |
122 | | - <!-- Replace with newer version as soon java 11 is minimal version --> |
| 129 | + |
123 | 130 | <dependency> |
124 | 131 | <groupId>com.github.tomakehurst</groupId> |
125 | 132 | <artifactId>wiremock-jre8</artifactId> |
126 | 133 | <version>2.35.2</version> |
127 | 134 | <scope>test</scope> |
128 | 135 | </dependency> |
129 | | - <dependency> |
130 | | - <groupId>org.roaringbitmap</groupId> |
131 | | - <artifactId>RoaringBitmap</artifactId> |
132 | | - <scope>test</scope> |
133 | | - </dependency> |
| 136 | + |
134 | 137 | </dependencies> |
135 | 138 |
|
136 | 139 | <build> |
|
0 commit comments