-
Notifications
You must be signed in to change notification settings - Fork 10
/
pom.xml
61 lines (55 loc) · 1.93 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.build.version>16</java.build.version>
<maven-compiler-plugin.version>3.2</maven-compiler-plugin.version>
<hbase.version>2.2.6</hbase.version>
<hbase-server.version>${hbase.version}</hbase-server.version>
<hbase-testing-util.version>${hbase.version}</hbase-testing-util.version>
</properties>
<groupId>com.amazonaws.awslabs</groupId>
<artifactId>hbase-custom-replication-endpoint</artifactId>
<version>alpha-0.1</version>
<name>hbase-custom-replication-endpoint</name>
<url>http://github.com/awslabs/streaming-endpoint-for-apache-hbase</url>
<packaging>pom</packaging>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub repo</name>
<url>https://maven.pkg.github.com/awslabs/streaming-endpoint-for-apache-hbase</url>
</repository>
</distributionManagement>
<modules>
<module>hbase-endpoint</module>
<module>sensor-simulator</module>
<module>lambda-kinesis-function</module>
<module>lambda-kafka-function</module>
<module>kafka-sink</module>
<module>kinesis-sink</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.12.7.1</version>
</dependency>
</dependencies>
</project>