1+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
2+ <modelVersion >4.0.0</modelVersion >
3+ <groupId >com.zhdc.www</groupId >
4+ <artifactId >GroupedProcessingTimeWindowExample</artifactId >
5+ <version >0.0.1-SNAPSHOT</version >
6+ <packaging >jar</packaging >
7+
8+ <dependencies >
9+
10+ <!-- core dependencies -->
11+ <!-- https://mvnrepository.com/artifact/redis.clients/jedis -->
12+
13+
14+ <dependency >
15+ <groupId >org.apache.flink</groupId >
16+ <artifactId >flink-streaming-java_2.10</artifactId >
17+ <version >1.3.1</version >
18+ </dependency >
19+
20+ <dependency >
21+ <groupId >org.apache.flink</groupId >
22+ <artifactId >flink-streaming-scala_2.10</artifactId >
23+ <version >1.3.1</version >
24+ </dependency >
25+
26+ <dependency >
27+ <groupId >org.apache.flink</groupId >
28+ <artifactId >flink-examples-batch_2.10</artifactId >
29+ <version >1.3.1</version >
30+ </dependency >
31+
32+ <dependency >
33+ <groupId >org.apache.flink</groupId >
34+ <artifactId >flink-connector-twitter_2.10</artifactId >
35+ <version >1.3.1</version >
36+ </dependency >
37+
38+ <dependency >
39+ <groupId >org.apache.flink</groupId >
40+ <artifactId >flink-connector-kafka-0.8_2.10</artifactId >
41+ <version >1.3.1</version >
42+ </dependency >
43+
44+ <!-- test dependencies -->
45+
46+ <dependency >
47+ <groupId >org.apache.flink</groupId >
48+ <artifactId >flink-test-utils_2.10</artifactId >
49+ <version >1.3.1</version >
50+ <scope >test</scope >
51+ </dependency >
52+
53+ <dependency >
54+ <groupId >org.apache.flink</groupId >
55+ <artifactId >flink-streaming-java_2.10</artifactId >
56+ <version >1.3.1</version >
57+ <scope >test</scope >
58+ <type >test-jar</type >
59+ </dependency >
60+
61+ <dependency >
62+ <groupId >redis.clients</groupId >
63+ <artifactId >jedis</artifactId >
64+ <version >2.9.0</version >
65+ </dependency >
66+
67+ </dependencies >
68+
69+
70+ <build >
71+ <plugins >
72+ <plugin >
73+ <groupId >org.apache.maven.plugins</groupId >
74+ <artifactId >maven-jar-plugin</artifactId >
75+ <version >2.4</version >
76+ <executions >
77+ <execution >
78+ <id >GroupedProcessingTimeWindowExample</id >
79+ <phase >package</phase >
80+ <goals >
81+ <goal >jar</goal >
82+ </goals >
83+ <configuration >
84+ <classifier >GroupedProcessingTimeWindowExample</classifier >
85+
86+ <archive >
87+ <manifestEntries >
88+ <program-class >GroupedProcessingTimeWindowExample.GroupedProcessingTimeWindowExample</program-class >
89+ </manifestEntries >
90+ </archive >
91+
92+
93+ </configuration >
94+ </execution >
95+ </executions >
96+ </plugin >
97+ </plugins >
98+ </build >
99+
100+ </project >
0 commit comments