Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame] | 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"> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <parent> |
| 4 | <groupId>org.apache.asterix</groupId> |
| 5 | <artifactId>apache-asterixdb</artifactId> |
Ian Maxon | d59149b | 2021-06-10 21:36:34 +0000 | [diff] [blame] | 6 | <version>0.9.8-SNAPSHOT</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 7 | </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 Blow | 4cd925c | 2018-01-20 17:15:38 -0500 | [diff] [blame] | 17 | <properties> |
| 18 | <root.dir>${basedir}/..</root.dir> |
| 19 | </properties> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 20 | <dependencies> |
| 21 | <dependency> |
| 22 | <groupId>org.apache.asterix</groupId> |
| 23 | <artifactId>asterix-common</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 24 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 25 | </dependency> |
| 26 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 27 | <groupId>org.apache.hyracks</groupId> |
| 28 | <artifactId>hyracks-api</artifactId> |
| 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 32 | <artifactId>hyracks-util</artifactId> |
| 33 | </dependency> |
| 34 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 35 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 50 | </dependency> |
Murtadha Hubail | 214d373 | 2017-12-08 02:19:39 +0300 | [diff] [blame] | 51 | <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 Hubail | af4018d | 2017-12-15 17:56:38 +0300 | [diff] [blame] | 59 | <dependency> |
| 60 | <groupId>org.apache.logging.log4j</groupId> |
| 61 | <artifactId>log4j-api</artifactId> |
| 62 | </dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 63 | </dependencies> |
Murtadha Hubail | 209f390 | 2015-11-11 22:11:28 -0800 | [diff] [blame] | 64 | |
Ian Maxon | 3da9d06 | 2016-03-16 17:05:31 -0700 | [diff] [blame] | 65 | </project> |