-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathpom.xml
46 lines (41 loc) · 1.47 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<!-- global properties -->
<properties>
<flink.version>1.12-vvr-3.0.0-SNAPSHOT</flink.version>
<scala.binary.version>2.11</scala.binary.version>
<hadoop.version>2.8.3</hadoop.version>
<hive.version>3.1.0</hive.version>
</properties>
<groupId>org.example</groupId>
<artifactId>flink-sql-etl</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>data-generator</module>
<module>etl-job</module>
<module>sql-avro</module>
<module>flink-demo</module>
<module>state-process</module>
</modules>
<dependencies>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>2.11.12</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>confluent</id>
<url>https://mvnrepository.com/artifact/io.confluent/kafka-avro-serializer</url>
</repository>
<repository>
<id>confluent1</id>
<url>http://packages.confluent.io/maven/</url>
</repository>
</repositories>
</project>