blob: 09307e46dd3a74ab9c8def76b8eccde122e51a1d [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>
buyingyi8d79d162012-10-22 23:04:47 +00004 <name>hyracks-api</name>
vinayakb0c860392012-10-06 18:47:20 +00005 <parent>
6 <groupId>edu.uci.ics.hyracks</groupId>
7 <artifactId>hyracks</artifactId>
madhusudancs@gmail.comdca02da2013-02-07 23:03:39 +00008 <version>0.2.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +00009 </parent>
10
11 <build>
12 <plugins>
13 <plugin>
14 <groupId>org.apache.maven.plugins</groupId>
15 <artifactId>maven-compiler-plugin</artifactId>
16 <version>2.0.2</version>
17 <configuration>
madhusudancs@gmail.coma5ed5152013-02-26 04:44:07 +000018 <source>1.7</source>
19 <target>1.7</target>
vinayakb0c860392012-10-06 18:47:20 +000020 </configuration>
21 </plugin>
22 </plugins>
23 </build>
24 <dependencies>
25 <dependency>
26 <groupId>org.json</groupId>
27 <artifactId>json</artifactId>
28 <version>20090211</version>
29 <type>jar</type>
30 <scope>compile</scope>
31 </dependency>
32 <dependency>
33 <groupId>org.apache.httpcomponents</groupId>
34 <artifactId>httpclient</artifactId>
35 <version>4.1-alpha2</version>
36 <type>jar</type>
37 <scope>compile</scope>
38 </dependency>
39 <dependency>
40 <groupId>args4j</groupId>
41 <artifactId>args4j</artifactId>
42 <version>2.0.12</version>
43 <type>jar</type>
44 <scope>compile</scope>
45 </dependency>
46 <dependency>
47 <groupId>edu.uci.ics.hyracks</groupId>
48 <artifactId>hyracks-ipc</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000049 <version>0.2.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000050 </dependency>
51 <dependency>
52 <groupId>org.apache.commons</groupId>
53 <artifactId>commons-lang3</artifactId>
54 <version>3.1</version>
55 </dependency>
56 </dependencies>
57</project>