blob: 6e70ad4baf111f654f576a12d4c74e84942176e7 [file] [log] [blame]
alexander.behmda007582010-11-18 08:20:11 +00001<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/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <groupId>edu.uci.ics.hyracks</groupId>
4 <artifactId>hyracks-storage-am-invertedindex</artifactId>
vinayakbfeba3682011-02-21 03:44:55 +00005 <version>0.1.4</version>
alexander.behmda007582010-11-18 08:20:11 +00006
7 <parent>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <artifactId>hyracks</artifactId>
vinayakbfeba3682011-02-21 03:44:55 +000010 <version>0.1.4</version>
alexander.behmda007582010-11-18 08:20:11 +000011 </parent>
12
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 <version>2.0.2</version>
19 <configuration>
20 <source>1.6</source>
21 <target>1.6</target>
22 </configuration>
23 </plugin>
24 </plugins>
25 </build>
alexander.behmabf2cba2011-03-11 09:15:02 +000026 <dependencies>
alexander.behmda007582010-11-18 08:20:11 +000027 <dependency>
28 <groupId>edu.uci.ics.hyracks</groupId>
29 <artifactId>hyracks-storage-common</artifactId>
vinayakbfeba3682011-02-21 03:44:55 +000030 <version>0.1.4</version>
alexander.behmda007582010-11-18 08:20:11 +000031 <type>jar</type>
32 <scope>compile</scope>
33 </dependency>
34 <dependency>
35 <groupId>edu.uci.ics.hyracks</groupId>
36 <artifactId>hyracks-dataflow-common</artifactId>
vinayakbfeba3682011-02-21 03:44:55 +000037 <version>0.1.4</version>
alexander.behmda007582010-11-18 08:20:11 +000038 <type>jar</type>
39 <scope>compile</scope>
40 </dependency>
41 <dependency>
42 <groupId>edu.uci.ics.hyracks</groupId>
43 <artifactId>hyracks-dataflow-std</artifactId>
vinayakbfeba3682011-02-21 03:44:55 +000044 <version>0.1.4</version>
alexander.behmda007582010-11-18 08:20:11 +000045 <type>jar</type>
46 <scope>compile</scope>
47 </dependency>
48 <dependency>
49 <groupId>edu.uci.ics.hyracks</groupId>
50 <artifactId>hyracks-control-nc</artifactId>
vinayakbfeba3682011-02-21 03:44:55 +000051 <version>0.1.4</version>
alexander.behmda007582010-11-18 08:20:11 +000052 <type>jar</type>
53 <scope>compile</scope>
54 </dependency>
55 <dependency>
56 <groupId>edu.uci.ics.hyracks</groupId>
57 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakbfeba3682011-02-21 03:44:55 +000058 <version>0.1.4</version>
alexander.behmda007582010-11-18 08:20:11 +000059 <type>jar</type>
60 <scope>compile</scope>
61 </dependency>
62 <dependency>
alexander.behmabf2cba2011-03-11 09:15:02 +000063 <groupId>edu.uci.ics.fuzzyjoin</groupId>
64 <artifactId>fuzzyjoin-core</artifactId>
alexander.behmb3b43182011-05-03 05:54:04 +000065 <version>0.0.3-SNAPSHOT</version>
alexander.behmabf2cba2011-03-11 09:15:02 +000066 <type>jar</type>
67 <scope>compile</scope>
68 </dependency>
69 <dependency>
alexander.behmda007582010-11-18 08:20:11 +000070 <groupId>junit</groupId>
71 <artifactId>junit</artifactId>
72 <version>4.8.1</version>
73 <type>jar</type>
74 <scope>test</scope>
75 </dependency>
76 </dependencies>
77</project>