blob: d6a63b263db3014d372325097d01ca688abdc52f [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>
AsterixDB Jenkins92a9a652017-08-07 17:23:07 -07006 <version>0.9.3-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 <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 Blowf8a882d2016-08-02 01:28:34 -040046 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070047 </dependency>
48 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070049 <groupId>org.apache.hyracks</groupId>
50 <artifactId>hyracks-api</artifactId>
51 </dependency>
52 <dependency>
53 <groupId>org.apache.hyracks</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -050054 <artifactId>hyracks-util</artifactId>
55 </dependency>
56 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -050057 <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 Blowb4c1fb02016-05-09 15:41:00 -070072 </dependency>
Murtadha Hubail214d3732017-12-08 02:19:39 +030073 <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 Hubailaf4018d2017-12-15 17:56:38 +030081 <dependency>
82 <groupId>org.apache.logging.log4j</groupId>
83 <artifactId>log4j-api</artifactId>
84 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070085 </dependencies>
Murtadha Hubail209f3902015-11-11 22:11:28 -080086
Ian Maxon3da9d062016-03-16 17:05:31 -070087</project>