blob: 7e9b4f8567671b73154fd6c815fae4a6ad134dff [file] [log] [blame]
Michael Blow380b0a22016-08-02 13:05:52 -04001<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">
Michael Blowb4c1fb02016-05-09 15:41:00 -07002 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.apache.asterix</groupId>
5 <artifactId>apache-asterixdb</artifactId>
Ian Maxond59149b2021-06-10 21:36:34 +00006 <version>0.9.8-SNAPSHOT</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -07007 </parent>
8 <artifactId>asterix-replication</artifactId>
9 <licenses>
10 <license>
11 <name>Apache License, Version 2.0</name>
12 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
13 <distribution>repo</distribution>
14 <comments>A business-friendly OSS license</comments>
15 </license>
16 </licenses>
Michael Blow4cd925c2018-01-20 17:15:38 -050017 <properties>
18 <root.dir>${basedir}/..</root.dir>
19 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070020 <dependencies>
21 <dependency>
22 <groupId>org.apache.asterix</groupId>
23 <artifactId>asterix-common</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040024 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070025 </dependency>
26 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070027 <groupId>org.apache.hyracks</groupId>
28 <artifactId>hyracks-api</artifactId>
29 </dependency>
30 <dependency>
31 <groupId>org.apache.hyracks</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -050032 <artifactId>hyracks-util</artifactId>
33 </dependency>
34 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -050035 <groupId>org.apache.hyracks</groupId>
36 <artifactId>hyracks-storage-am-lsm-common</artifactId>
37 </dependency>
38 <dependency>
39 <groupId>org.apache.hyracks</groupId>
40 <artifactId>hyracks-storage-common</artifactId>
41 </dependency>
42 <dependency>
43 <groupId>org.apache.hyracks</groupId>
44 <artifactId>hyracks-data-std</artifactId>
45 </dependency>
46 <dependency>
47 <groupId>org.apache.asterix</groupId>
48 <artifactId>asterix-transactions</artifactId>
49 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070050 </dependency>
Murtadha Hubail214d3732017-12-08 02:19:39 +030051 <dependency>
52 <groupId>com.fasterxml.jackson.core</groupId>
53 <artifactId>jackson-core</artifactId>
54 </dependency>
55 <dependency>
56 <groupId>com.fasterxml.jackson.core</groupId>
57 <artifactId>jackson-databind</artifactId>
58 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +030059 <dependency>
60 <groupId>org.apache.logging.log4j</groupId>
61 <artifactId>log4j-api</artifactId>
62 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070063 </dependencies>
Murtadha Hubail209f3902015-11-11 22:11:28 -080064
Ian Maxon3da9d062016-03-16 17:05:31 -070065</project>