vinayakb | 32c3869 | 2010-08-12 22:25:49 +0000 | [diff] [blame] | 1 | <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> |
vinayakb | 168d92f | 2010-09-30 20:57:28 +0000 | [diff] [blame] | 3 | <groupId>edu.uci.ics.hyracks.examples.text</groupId> |
| 4 | <artifactId>texthelper</artifactId> |
vinayakb | 28cc83e | 2010-08-19 21:44:21 +0000 | [diff] [blame] | 5 | |
| 6 | <parent> |
| 7 | <groupId>edu.uci.ics.hyracks.examples</groupId> |
vinayakb | 168d92f | 2010-09-30 20:57:28 +0000 | [diff] [blame] | 8 | <artifactId>text-example</artifactId> |
vinayakb | f46fefa | 2011-10-12 02:54:11 +0000 | [diff] [blame] | 9 | <version>0.2.0-SNAPSHOT</version> |
vinayakb | 28cc83e | 2010-08-19 21:44:21 +0000 | [diff] [blame] | 10 | </parent> |
| 11 | |
vinayakb | 32c3869 | 2010-08-12 22:25:49 +0000 | [diff] [blame] | 12 | <dependencies> |
| 13 | <dependency> |
| 14 | <groupId>edu.uci.ics.hyracks</groupId> |
| 15 | <artifactId>hyracks-dataflow-std</artifactId> |
vinayakb | f46fefa | 2011-10-12 02:54:11 +0000 | [diff] [blame] | 16 | <version>0.2.0-SNAPSHOT</version> |
vinayakb | 32c3869 | 2010-08-12 22:25:49 +0000 | [diff] [blame] | 17 | <scope>compile</scope> |
| 18 | </dependency> |
| 19 | <dependency> |
| 20 | <groupId>edu.uci.ics.hyracks</groupId> |
| 21 | <artifactId>hyracks-api</artifactId> |
vinayakb | f46fefa | 2011-10-12 02:54:11 +0000 | [diff] [blame] | 22 | <version>0.2.0-SNAPSHOT</version> |
vinayakb | 32c3869 | 2010-08-12 22:25:49 +0000 | [diff] [blame] | 23 | <scope>compile</scope> |
| 24 | </dependency> |
vinayakb | 8ec0f61 | 2011-12-08 01:00:37 +0000 | [diff] [blame^] | 25 | <dependency> |
| 26 | <groupId>edu.uci.ics.hyracks</groupId> |
| 27 | <artifactId>hyracks-data-std</artifactId> |
| 28 | <version>0.2.0-SNAPSHOT</version> |
| 29 | </dependency> |
vinayakb | 32c3869 | 2010-08-12 22:25:49 +0000 | [diff] [blame] | 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> |