blob: efe1607e837f34ae7964420dd8175a1862194e94 [file] [log] [blame]
vinayakba9b0c5b2013-02-26 09:02:22 +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>
vinayakba9b0c5b2013-02-26 09:02:22 +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>
vinayakb9506d182013-03-22 08:20:32 +000026 <source>1.7</source>
27 <target>1.7</target>
28 <fork>true</fork>
buyingyi7f356c12012-10-07 00:23:17 +000029 </configuration>
30 </plugin>
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-surefire-plugin</artifactId>
34 <version>2.7.2</version>
35 <configuration>
36 <forkMode>pertest</forkMode>
buyingyi62598052012-10-22 19:55:10 +000037 <argLine>-enableassertions -Xmx512m -Dfile.encoding=UTF-8
buyingyi7f356c12012-10-07 00:23:17 +000038 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
39 <includes>
40 <include>**/*TestSuite.java</include>
41 <include>**/*Test.java</include>
42 </includes>
43 </configuration>
44 </plugin>
45 <plugin>
vinayakb84807932012-11-20 02:31:24 +000046 <groupId>org.apache.maven.plugins</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000047 <artifactId>maven-clean-plugin</artifactId>
vinayakb84807932012-11-20 02:31:24 +000048 <version>2.4.1</version>
buyingyi7f356c12012-10-07 00:23:17 +000049 <configuration>
50 <filesets>
51 <fileset>
52 <directory>.</directory>
53 <includes>
54 <include>teststore*</include>
55 <include>edu*</include>
56 <include>actual*</include>
57 <include>build*</include>
58 <include>expect*</include>
59 <include>ClusterController*</include>
60 </includes>
61 </fileset>
62 </filesets>
63 </configuration>
64 </plugin>
65 </plugins>
66 </build>
67
68 <dependencies>
69 <dependency>
70 <groupId>junit</groupId>
71 <artifactId>junit</artifactId>
72 <version>4.8.1</version>
73 <scope>test</scope>
74 </dependency>
75 <dependency>
buyingyie7752502012-10-08 00:35:31 +000076 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000077 <artifactId>pregelix-dataflow-std-base</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000078 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000079 <type>jar</type>
80 <scope>compile</scope>
81 </dependency>
82 <dependency>
83 <groupId>edu.uci.ics.hyracks</groupId>
84 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000085 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000086 <type>jar</type>
87 <scope>compile</scope>
88 </dependency>
89 <dependency>
90 <groupId>edu.uci.ics.hyracks</groupId>
91 <artifactId>hyracks-api</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000092 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000093 <type>jar</type>
94 <scope>compile</scope>
95 </dependency>
96 <dependency>
97 <groupId>edu.uci.ics.hyracks</groupId>
98 <artifactId>hyracks-dataflow-common</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000099 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000100 <type>jar</type>
101 <scope>compile</scope>
102 </dependency>
103 <dependency>
104 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000105 <artifactId>hyracks-data-std</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000106 <version>0.2.3-SNAPSHOT</version>
vinayakba9b0c5b2013-02-26 09:02:22 +0000107 <type>jar</type>
108 <scope>compile</scope>
buyingyi7f356c12012-10-07 00:23:17 +0000109 </dependency>
110 <dependency>
vinayakba9b0c5b2013-02-26 09:02:22 +0000111 <groupId>edu.uci.ics.hyracks</groupId>
112 <artifactId>hyracks-hdfs-core</artifactId>
113 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000114 <type>jar</type>
115 <scope>compile</scope>
116 </dependency>
117 <dependency>
118 <groupId>edu.uci.ics.hyracks</groupId>
119 <artifactId>hyracks-storage-am-common</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000120 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000121 <type>jar</type>
122 <scope>compile</scope>
123 </dependency>
124 <dependency>
125 <groupId>edu.uci.ics.hyracks</groupId>
126 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000127 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000128 <type>jar</type>
129 <scope>compile</scope>
130 </dependency>
131 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000132 <groupId>edu.uci.ics.hyracks</groupId>
133 <artifactId>hyracks-control-cc</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000134 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000135 <type>jar</type>
136 <scope>compile</scope>
137 </dependency>
138 <dependency>
139 <groupId>edu.uci.ics.hyracks</groupId>
140 <artifactId>hyracks-control-nc</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000141 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000142 <type>jar</type>
143 <scope>compile</scope>
144 </dependency>
145 <dependency>
146 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000147 <artifactId>hyracks-ipc</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000148 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000149 <type>jar</type>
150 <scope>compile</scope>
151 </dependency>
152 </dependencies>
153</project>