blob: 5086192938d33b937aca2383541ccc9604b35efc [file] [log] [blame]
Murtadha Hubail209f3902015-11-11 22:11:28 -08001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.apache.asterix</groupId>
Ian Maxon3da9d062016-03-16 17:05:31 -07006 <artifactId>apache-asterixdb</artifactId>
7 <version>0.8.9-SNAPSHOT</version>
Murtadha Hubail209f3902015-11-11 22:11:28 -08008 </parent>
9 <artifactId>asterix-replication</artifactId>
10 <licenses>
11 <license>
12 <name>Apache License, Version 2.0</name>
13 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
14 <distribution>repo</distribution>
15 <comments>A business-friendly OSS license</comments>
16 </license>
17 </licenses>
18 <build>
19 <plugins>
20 <plugin>
21 <groupId>org.apache.maven.plugins</groupId>
Murtadha Hubail209f3902015-11-11 22:11:28 -080022 <artifactId>maven-jar-plugin</artifactId>
23 <configuration>
24 <includes>
25 <include>**/*.class</include>
26 <include>**/*.txt</include>
27 </includes>
28 </configuration>
29 <executions>
30 <execution>
31 <goals>
32 <goal>test-jar</goal>
33 </goals>
34 <phase>package</phase>
35 </execution>
36 </executions>
37 </plugin>
38 </plugins>
39 </build>
40 <dependencies>
41 <dependency>
42 <groupId>org.apache.asterix</groupId>
43 <artifactId>asterix-common</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -070044 <version>0.8.9-SNAPSHOT</version>
Murtadha Hubail209f3902015-11-11 22:11:28 -080045 </dependency>
46 <dependency>
47 <groupId>org.apache.asterix</groupId>
48 <artifactId>asterix-metadata</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -070049 <version>0.8.9-SNAPSHOT</version>
Murtadha Hubail209f3902015-11-11 22:11:28 -080050 </dependency>
51 <dependency>
52 <groupId>org.apache.hyracks</groupId>
53 <artifactId>hyracks-api</artifactId>
54 </dependency>
55 <dependency>
56 <groupId>org.apache.hyracks</groupId>
57 <artifactId>hyracks-storage-am-common</artifactId>
58 </dependency>
59 </dependencies>
60
Ian Maxon3da9d062016-03-16 17:05:31 -070061</project>