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> |
AsterixDB Jenkins | 92a9a65 | 2017-08-07 17:23:07 -0700 | [diff] [blame] | 6 | <version>0.9.3-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 | <build> |
| 21 | <plugins> |
| 22 | <plugin> |
| 23 | <groupId>org.apache.maven.plugins</groupId> |
| 24 | <artifactId>maven-jar-plugin</artifactId> |
| 25 | <configuration> |
| 26 | <includes> |
| 27 | <include>**/*.class</include> |
| 28 | <include>**/*.txt</include> |
| 29 | </includes> |
| 30 | </configuration> |
| 31 | <executions> |
| 32 | <execution> |
| 33 | <goals> |
| 34 | <goal>test-jar</goal> |
| 35 | </goals> |
| 36 | <phase>package</phase> |
| 37 | </execution> |
| 38 | </executions> |
| 39 | </plugin> |
| 40 | </plugins> |
| 41 | </build> |
| 42 | <dependencies> |
| 43 | <dependency> |
| 44 | <groupId>org.apache.asterix</groupId> |
| 45 | <artifactId>asterix-common</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 46 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 47 | </dependency> |
| 48 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 49 | <groupId>org.apache.hyracks</groupId> |
| 50 | <artifactId>hyracks-api</artifactId> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 54 | <artifactId>hyracks-util</artifactId> |
| 55 | </dependency> |
| 56 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 57 | <groupId>org.apache.hyracks</groupId> |
| 58 | <artifactId>hyracks-storage-am-lsm-common</artifactId> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.apache.hyracks</groupId> |
| 62 | <artifactId>hyracks-storage-common</artifactId> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.apache.hyracks</groupId> |
| 66 | <artifactId>hyracks-data-std</artifactId> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.apache.asterix</groupId> |
| 70 | <artifactId>asterix-transactions</artifactId> |
| 71 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 72 | </dependency> |
Murtadha Hubail | 214d373 | 2017-12-08 02:19:39 +0300 | [diff] [blame] | 73 | <dependency> |
| 74 | <groupId>com.fasterxml.jackson.core</groupId> |
| 75 | <artifactId>jackson-core</artifactId> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>com.fasterxml.jackson.core</groupId> |
| 79 | <artifactId>jackson-databind</artifactId> |
| 80 | </dependency> |
Murtadha Hubail | af4018d | 2017-12-15 17:56:38 +0300 | [diff] [blame] | 81 | <dependency> |
| 82 | <groupId>org.apache.logging.log4j</groupId> |
| 83 | <artifactId>log4j-api</artifactId> |
| 84 | </dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 85 | </dependencies> |
Murtadha Hubail | 209f390 | 2015-11-11 22:11:28 -0800 | [diff] [blame] | 86 | |
Ian Maxon | 3da9d06 | 2016-03-16 17:05:31 -0700 | [diff] [blame] | 87 | </project> |