|
147 | 147 | <artifactId>jmapper-core</artifactId> |
148 | 148 | <version>${jmapper.version}</version> |
149 | 149 | </dependency> |
150 | | - |
151 | 150 | <!-- crunch project --> |
152 | 151 | <dependency> |
153 | 152 | <groupId>org.apache.crunch</groupId> |
|
185 | 184 | </exclusion> |
186 | 185 | </exclusions> |
187 | 186 | </dependency> |
188 | | - |
| 187 | + <dependency> |
| 188 | + <groupId>org.apache.flink</groupId> |
| 189 | + <artifactId>flink-connector-kafka-0.11_2.11</artifactId> |
| 190 | + <version>${flink.version}</version> |
| 191 | + </dependency> |
| 192 | + <dependency> |
| 193 | + <groupId>org.apache.flink</groupId> |
| 194 | + <artifactId>flink-streaming-java_2.11</artifactId> |
| 195 | + <version>${flink.version}</version> |
| 196 | + </dependency> |
| 197 | + <dependency> |
| 198 | + <groupId>com.fasterxml.jackson.datatype</groupId> |
| 199 | + <artifactId>jackson-datatype-jsr310</artifactId> |
| 200 | + <version>${jackson.version}</version> |
| 201 | + </dependency> |
| 202 | + <dependency> |
| 203 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 204 | + <artifactId>jackson-databind</artifactId> |
| 205 | + <version>${jackson.version}</version> |
| 206 | + </dependency> |
| 207 | + <dependency> |
| 208 | + <groupId>org.apache.flink</groupId> |
| 209 | + <artifactId>flink-core</artifactId> |
| 210 | + <version>${flink.version}</version> |
| 211 | + <exclusions> |
| 212 | + <exclusion> |
| 213 | + <artifactId>commons-logging</artifactId> |
| 214 | + <groupId>commons-logging</groupId> |
| 215 | + </exclusion> |
| 216 | + </exclusions> |
| 217 | + </dependency> |
| 218 | + <dependency> |
| 219 | + <groupId>org.apache.flink</groupId> |
| 220 | + <artifactId>flink-java</artifactId> |
| 221 | + <version>${flink.version}</version> |
| 222 | + <exclusions> |
| 223 | + <exclusion> |
| 224 | + <artifactId>commons-logging</artifactId> |
| 225 | + <groupId>commons-logging</groupId> |
| 226 | + </exclusion> |
| 227 | + </exclusions> |
| 228 | + </dependency> |
| 229 | + <dependency> |
| 230 | + <groupId>org.apache.flink</groupId> |
| 231 | + <artifactId>flink-test-utils_2.11</artifactId> |
| 232 | + <version>${flink.version}</version> |
| 233 | + <scope>test</scope> |
| 234 | + </dependency> |
| 235 | + <dependency> |
| 236 | + <groupId>org.assertj</groupId> |
| 237 | + <artifactId>assertj-core</artifactId> |
| 238 | + <version>${assertj.version}</version> |
| 239 | + </dependency> |
| 240 | + <dependency> |
| 241 | + <groupId>org.awaitility</groupId> |
| 242 | + <artifactId>awaitility</artifactId> |
| 243 | + <version>${awaitility.version}</version> |
| 244 | + <scope>test</scope> |
| 245 | + </dependency> |
| 246 | + <dependency> |
| 247 | + <groupId>org.awaitility</groupId> |
| 248 | + <artifactId>awaitility-proxy</artifactId> |
| 249 | + <version>${awaitility.version}</version> |
| 250 | + <scope>test</scope> |
| 251 | + </dependency> |
| 252 | + |
189 | 253 | </dependencies> |
190 | 254 |
|
191 | 255 | <build> |
|
336 | 400 | <ignite.version>2.4.0</ignite.version> |
337 | 401 | <gson.version>2.8.2</gson.version> |
338 | 402 | <cache.version>1.1.0</cache.version> |
| 403 | + <flink.version>1.5.0</flink.version> |
| 404 | + <jackson.version>2.8.5</jackson.version> |
| 405 | + <awaitility.version>3.0.0</awaitility.version> |
| 406 | + <assertj.version>3.6.2</assertj.version> |
339 | 407 | <hazelcast.version>3.8.4</hazelcast.version> |
340 | 408 | <maven-antrun-plugin.version>1.8</maven-antrun-plugin.version> |
341 | 409 | <build-helper-maven-plugin.version>3.0.0</build-helper-maven-plugin.version> |
|
0 commit comments