blob: 8dc953e98cf29a692954d47eb45635da882f6cdc [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 <groupId>edu.uci.ics.hyracks.examples.text</groupId>
4 <artifactId>texthelper</artifactId>
5
6 <parent>
7 <groupId>edu.uci.ics.hyracks.examples</groupId>
8 <artifactId>text-example</artifactId>
9 <version>0.2.2-SNAPSHOT</version>
10 </parent>
11
12 <dependencies>
13 <dependency>
14 <groupId>edu.uci.ics.hyracks</groupId>
15 <artifactId>hyracks-dataflow-std</artifactId>
16 <version>0.2.2-SNAPSHOT</version>
17 <scope>compile</scope>
18 </dependency>
19 <dependency>
20 <groupId>edu.uci.ics.hyracks</groupId>
21 <artifactId>hyracks-api</artifactId>
22 <version>0.2.2-SNAPSHOT</version>
23 <scope>compile</scope>
24 </dependency>
25 <dependency>
26 <groupId>edu.uci.ics.hyracks</groupId>
27 <artifactId>hyracks-data-std</artifactId>
28 <version>0.2.2-SNAPSHOT</version>
29 </dependency>
30 </dependencies>
31 <build>
32 <plugins>
33 <plugin>
34 <groupId>org.apache.maven.plugins</groupId>
35 <artifactId>maven-compiler-plugin</artifactId>
36 <version>2.0.2</version>
37 <configuration>
38 <source>1.6</source>
39 <target>1.6</target>
40 </configuration>
41 </plugin>
42 </plugins>
43 </build>
44</project>