blob: b5595ef4125d868ff59f0c66a1091ff14057d961 [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>
6 <artifactId>asterix</artifactId>
7 <version>0.8.8-SNAPSHOT</version>
8 </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>
22 <artifactId>maven-compiler-plugin</artifactId>
23 <configuration>
24 <source>1.8</source>
25 <target>1.8</target>
26 <fork>true</fork>
27 </configuration>
28 </plugin>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
31 <artifactId>maven-jar-plugin</artifactId>
32 <configuration>
33 <includes>
34 <include>**/*.class</include>
35 <include>**/*.txt</include>
36 </includes>
37 </configuration>
38 <executions>
39 <execution>
40 <goals>
41 <goal>test-jar</goal>
42 </goals>
43 <phase>package</phase>
44 </execution>
45 </executions>
46 </plugin>
47 </plugins>
48 </build>
49 <dependencies>
50 <dependency>
51 <groupId>org.apache.asterix</groupId>
52 <artifactId>asterix-common</artifactId>
53 <version>0.8.8-SNAPSHOT</version>
54 </dependency>
55 <dependency>
56 <groupId>org.apache.asterix</groupId>
57 <artifactId>asterix-metadata</artifactId>
58 <version>0.8.8-SNAPSHOT</version>
59 </dependency>
60 <dependency>
61 <groupId>org.apache.hyracks</groupId>
62 <artifactId>hyracks-api</artifactId>
63 </dependency>
64 <dependency>
65 <groupId>org.apache.hyracks</groupId>
66 <artifactId>hyracks-storage-am-common</artifactId>
67 </dependency>
68 </dependencies>
69
70</project>