blob: 9bec30c27574bf83228f37f57d34f71ef5211c3e [file] [log] [blame]
vinayakb59546c32010-07-29 20:24:35 +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-api</artifactId>
5 <version>0.1.0</version>
6 <build>
7 <plugins>
8 <plugin>
9 <groupId>org.apache.maven.plugins</groupId>
10 <artifactId>maven-compiler-plugin</artifactId>
11 <version>2.0.2</version>
12 <configuration>
13 <source>1.6</source>
14 <target>1.6</target>
15 </configuration>
16 </plugin>
17 </plugins>
18 </build>
19 <dependencies>
20 <dependency>
21 <groupId>org.json</groupId>
22 <artifactId>json</artifactId>
23 <version>20090211</version>
24 <type>jar</type>
25 <scope>compile</scope>
26 </dependency>
27 </dependencies>
28</project>