blob: 6b6a5532a675182cf9a1e1f2c41f52d22c41f3b0 [file] [log] [blame]
vinayakb0c860392012-10-06 18:47:20 +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 <artifactId>hyracks-api</artifactId>
4 <parent>
5 <groupId>edu.uci.ics.hyracks</groupId>
6 <artifactId>hyracks</artifactId>
7 <version>0.2.2-SNAPSHOT</version>
8 </parent>
9
10 <build>
11 <plugins>
12 <plugin>
13 <groupId>org.apache.maven.plugins</groupId>
14 <artifactId>maven-compiler-plugin</artifactId>
15 <version>2.0.2</version>
16 <configuration>
17 <source>1.6</source>
18 <target>1.6</target>
19 </configuration>
20 </plugin>
21 </plugins>
22 </build>
23 <dependencies>
24 <dependency>
25 <groupId>org.json</groupId>
26 <artifactId>json</artifactId>
27 <version>20090211</version>
28 <type>jar</type>
29 <scope>compile</scope>
30 </dependency>
31 <dependency>
32 <groupId>org.apache.httpcomponents</groupId>
33 <artifactId>httpclient</artifactId>
34 <version>4.1-alpha2</version>
35 <type>jar</type>
36 <scope>compile</scope>
37 </dependency>
38 <dependency>
39 <groupId>args4j</groupId>
40 <artifactId>args4j</artifactId>
41 <version>2.0.12</version>
42 <type>jar</type>
43 <scope>compile</scope>
44 </dependency>
45 <dependency>
46 <groupId>edu.uci.ics.hyracks</groupId>
47 <artifactId>hyracks-ipc</artifactId>
48 <version>0.2.2-SNAPSHOT</version>
49 </dependency>
50 <dependency>
51 <groupId>org.apache.commons</groupId>
52 <artifactId>commons-lang3</artifactId>
53 <version>3.1</version>
54 </dependency>
55 </dependencies>
56</project>