buyingyi | 2c06ee6 | 2013-02-02 10:45:08 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <project |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 4 | xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | <parent> |
| 7 | <artifactId>hyracks</artifactId> |
| 8 | <groupId>edu.uci.ics.hyracks</groupId> |
| 9 | <version>0.2.3-SNAPSHOT</version> |
| 10 | </parent> |
| 11 | |
| 12 | <groupId>edu.uc.ics.hyracks</groupId> |
| 13 | <artifactId>hyracks-hdfs-scheduler</artifactId> |
| 14 | <version>1.0-SNAPSHOT</version> |
| 15 | <name>hyracks-hdfs-scheduler</name> |
| 16 | |
| 17 | <build> |
| 18 | <plugins> |
| 19 | <plugin> |
| 20 | <groupId>org.apache.maven.plugins</groupId> |
| 21 | <artifactId>maven-compiler-plugin</artifactId> |
| 22 | <version>2.0.2</version> |
| 23 | <configuration> |
| 24 | <source>1.6</source> |
| 25 | <target>1.6</target> |
| 26 | </configuration> |
| 27 | </plugin> |
| 28 | <plugin> |
| 29 | <groupId>org.apache.maven.plugins</groupId> |
| 30 | <artifactId>maven-surefire-plugin</artifactId> |
| 31 | <version>2.7.2</version> |
| 32 | <configuration> |
| 33 | <forkMode>pertest</forkMode> |
| 34 | <includes> |
| 35 | <include>**/*TestSuite.java</include> |
| 36 | <include>**/*Test.java</include> |
| 37 | </includes> |
| 38 | </configuration> |
| 39 | </plugin> |
| 40 | </plugins> |
| 41 | </build> |
| 42 | |
| 43 | <dependencies> |
| 44 | <dependency> |
| 45 | <groupId>junit</groupId> |
| 46 | <artifactId>junit</artifactId> |
| 47 | <version>3.8.1</version> |
| 48 | <scope>test</scope> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>edu.uci.ics.hyracks</groupId> |
| 52 | <artifactId>hyracks-api</artifactId> |
buyingyi | 5b939f2 | 2013-02-04 09:24:35 +0000 | [diff] [blame^] | 53 | <version>0.2.3-SNAPSHOT</version> |
| 54 | <scope>compile</scope> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>edu.uci.ics.hyracks</groupId> |
| 58 | <artifactId>hyracks-dataflow-std</artifactId> |
| 59 | <version>0.2.3-SNAPSHOT</version> |
| 60 | <scope>compile</scope> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>edu.uci.ics.hyracks</groupId> |
| 64 | <artifactId>hyracks-dataflow-common</artifactId> |
| 65 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 2c06ee6 | 2013-02-02 10:45:08 +0000 | [diff] [blame] | 66 | <scope>compile</scope> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.apache.hadoop</groupId> |
| 70 | <artifactId>hadoop-core</artifactId> |
| 71 | <version>0.20.2</version> |
| 72 | <type>jar</type> |
| 73 | <scope>compile</scope> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>org.apache.hadoop</groupId> |
| 77 | <artifactId>hadoop-test</artifactId> |
| 78 | <version>0.20.2</version> |
| 79 | <type>jar</type> |
| 80 | <scope>test</scope> |
| 81 | </dependency> |
| 82 | </dependencies> |
| 83 | </project> |