blob: 3f3ba009e4e80cf3578c607c626f9aeb475ca9fe [file] [log] [blame]
buyingyic3b8f7b2013-02-14 07:45:45 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
buyingyi7f356c12012-10-07 00:23:17 +00003 <modelVersion>4.0.0</modelVersion>
4 <artifactId>pregelix-dataflow-std</artifactId>
5 <packaging>jar</packaging>
6 <name>pregelix-dataflow-std</name>
7
8 <parent>
buyingyic3b8f7b2013-02-14 07:45:45 +00009 <groupId>edu.uci.ics.hyracks</groupId>
10 <artifactId>pregelix</artifactId>
11 <version>0.2.3-SNAPSHOT</version>
12 </parent>
buyingyi7f356c12012-10-07 00:23:17 +000013
14
15 <properties>
16 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17 </properties>
18
19 <build>
20 <plugins>
21 <plugin>
22 <groupId>org.apache.maven.plugins</groupId>
23 <artifactId>maven-compiler-plugin</artifactId>
24 <version>2.0.2</version>
25 <configuration>
26 <source>1.6</source>
27 <target>1.6</target>
28 </configuration>
29 </plugin>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-surefire-plugin</artifactId>
33 <version>2.7.2</version>
34 <configuration>
35 <forkMode>pertest</forkMode>
buyingyi62598052012-10-22 19:55:10 +000036 <argLine>-enableassertions -Xmx512m -Dfile.encoding=UTF-8
buyingyi7f356c12012-10-07 00:23:17 +000037 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
38 <includes>
39 <include>**/*TestSuite.java</include>
40 <include>**/*Test.java</include>
41 </includes>
42 </configuration>
43 </plugin>
44 <plugin>
45 <artifactId>maven-clean-plugin</artifactId>
vinayakba8d545c2013-02-05 05:54:47 +000046 <version>2.5</version>
buyingyi7f356c12012-10-07 00:23:17 +000047 <configuration>
48 <filesets>
49 <fileset>
50 <directory>.</directory>
51 <includes>
52 <include>teststore*</include>
53 <include>edu*</include>
54 <include>actual*</include>
55 <include>build*</include>
56 <include>expect*</include>
57 <include>ClusterController*</include>
58 </includes>
59 </fileset>
60 </filesets>
61 </configuration>
62 </plugin>
63 </plugins>
64 </build>
65
66 <dependencies>
67 <dependency>
68 <groupId>junit</groupId>
69 <artifactId>junit</artifactId>
70 <version>4.8.1</version>
71 <scope>test</scope>
72 </dependency>
73 <dependency>
buyingyie7752502012-10-08 00:35:31 +000074 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000075 <artifactId>pregelix-dataflow-std-base</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000076 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000077 <type>jar</type>
78 <scope>compile</scope>
79 </dependency>
80 <dependency>
81 <groupId>edu.uci.ics.hyracks</groupId>
82 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000083 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000084 <type>jar</type>
85 <scope>compile</scope>
86 </dependency>
87 <dependency>
88 <groupId>edu.uci.ics.hyracks</groupId>
89 <artifactId>hyracks-api</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000090 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000091 <type>jar</type>
92 <scope>compile</scope>
93 </dependency>
94 <dependency>
95 <groupId>edu.uci.ics.hyracks</groupId>
96 <artifactId>hyracks-dataflow-common</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000097 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000098 <type>jar</type>
99 <scope>compile</scope>
100 </dependency>
101 <dependency>
102 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000103 <artifactId>hyracks-data-std</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000104 <version>0.2.3-SNAPSHOT</version>
buyingyi321fbd82013-02-13 23:16:27 +0000105 <type>jar</type>
buyingyic3b8f7b2013-02-14 07:45:45 +0000106 <scope>compile</scope>
buyingyi7f356c12012-10-07 00:23:17 +0000107 </dependency>
108 <dependency>
buyingyic3b8f7b2013-02-14 07:45:45 +0000109 <groupId>edu.uci.ics.hyracks</groupId>
110 <artifactId>hyracks-hdfs-core</artifactId>
111 <version>0.2.3-SNAPSHOT</version>
112 <type>jar</type>
113 <scope>compile</scope>
114 </dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000115 <dependency>
116 <groupId>edu.uci.ics.hyracks</groupId>
117 <artifactId>hyracks-storage-am-common</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000118 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000119 <type>jar</type>
120 <scope>compile</scope>
121 </dependency>
122 <dependency>
123 <groupId>edu.uci.ics.hyracks</groupId>
124 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000125 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000126 <type>jar</type>
127 <scope>compile</scope>
128 </dependency>
129 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000130 <groupId>edu.uci.ics.hyracks</groupId>
131 <artifactId>hyracks-control-cc</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000132 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000133 <type>jar</type>
134 <scope>compile</scope>
135 </dependency>
136 <dependency>
137 <groupId>edu.uci.ics.hyracks</groupId>
138 <artifactId>hyracks-control-nc</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000139 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000140 <type>jar</type>
141 <scope>compile</scope>
142 </dependency>
143 <dependency>
144 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000145 <artifactId>hyracks-ipc</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000146 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000147 <type>jar</type>
148 <scope>compile</scope>
149 </dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000150 </dependencies>
151</project>