blob: 238b1e1e287a6bebe28b27dc8597b32c094168b1 [file] [log] [blame]
vinayakbb4a38c02012-10-29 15:44:02 +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/xsd/maven-4.0.0.xsd">
vinayakb59d505d2012-10-29 10:38:02 +00002 <modelVersion>4.0.0</modelVersion>
3 <artifactId>pregelix-runtime</artifactId>
4 <packaging>jar</packaging>
5 <name>pregelix-runtime</name>
6
7 <parent>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <artifactId>pregelix</artifactId>
vinayakba81424a2013-04-06 19:21:13 +000010 <version>0.2.4</version>
vinayakb59d505d2012-10-29 10:38:02 +000011 </parent>
12
13
14 <properties>
15 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16 </properties>
17
18 <build>
19 <plugins>
20 <plugin>
21 <groupId>org.apache.maven.plugins</groupId>
22 <artifactId>maven-compiler-plugin</artifactId>
23 <version>2.0.2</version>
24 <configuration>
buyingyi5df938f2013-03-24 07:20:08 +000025 <source>1.7</source>
26 <target>1.7</target>
27 <fork>true</fork>
vinayakb59d505d2012-10-29 10:38:02 +000028 </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>
36 <argLine>-enableassertions -Xmx512m -Dfile.encoding=UTF-8
37 -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>
vinayakb5d0e4592013-04-06 18:28:48 +000045 <groupId>org.apache.maven.plugins</groupId>
vinayakb59d505d2012-10-29 10:38:02 +000046 <artifactId>maven-clean-plugin</artifactId>
vinayakb5d0e4592013-04-06 18:28:48 +000047 <version>2.4.1</version>
vinayakb59d505d2012-10-29 10:38:02 +000048 <configuration>
49 <filesets>
50 <fileset>
51 <directory>.</directory>
52 <includes>
53 <include>teststore*</include>
54 <include>edu*</include>
55 <include>actual*</include>
56 <include>build*</include>
57 <include>expect*</include>
58 <include>ClusterController*</include>
59 </includes>
60 </fileset>
61 </filesets>
62 </configuration>
63 </plugin>
64 </plugins>
65 </build>
66
67 <dependencies>
68 <dependency>
69 <groupId>junit</groupId>
70 <artifactId>junit</artifactId>
71 <version>4.8.1</version>
72 <scope>test</scope>
73 </dependency>
74 <dependency>
75 <groupId>edu.uci.ics.hyracks</groupId>
76 <artifactId>pregelix-api</artifactId>
vinayakba81424a2013-04-06 19:21:13 +000077 <version>0.2.4</version>
vinayakb59d505d2012-10-29 10:38:02 +000078 <type>jar</type>
79 <scope>compile</scope>
80 </dependency>
81 <dependency>
82 <groupId>edu.uci.ics.hyracks</groupId>
83 <artifactId>pregelix-dataflow-std</artifactId>
vinayakba81424a2013-04-06 19:21:13 +000084 <version>0.2.4</version>
vinayakb59d505d2012-10-29 10:38:02 +000085 <type>jar</type>
86 <scope>compile</scope>
87 </dependency>
88 <dependency>
89 <groupId>edu.uci.ics.hyracks</groupId>
90 <artifactId>pregelix-dataflow</artifactId>
vinayakba81424a2013-04-06 19:21:13 +000091 <version>0.2.4</version>
vinayakb59d505d2012-10-29 10:38:02 +000092 <type>jar</type>
93 <scope>compile</scope>
94 </dependency>
95 <dependency>
96 <groupId>edu.uci.ics.hyracks</groupId>
97 <artifactId>hyracks-dataflow-std</artifactId>
vinayakba81424a2013-04-06 19:21:13 +000098 <version>0.2.4</version>
vinayakb59d505d2012-10-29 10:38:02 +000099 <type>jar</type>
100 <scope>compile</scope>
101 </dependency>
102 <dependency>
103 <groupId>edu.uci.ics.hyracks</groupId>
104 <artifactId>hyracks-api</artifactId>
vinayakba81424a2013-04-06 19:21:13 +0000105 <version>0.2.4</version>
vinayakb59d505d2012-10-29 10:38:02 +0000106 <type>jar</type>
107 <scope>compile</scope>
108 </dependency>
109 <dependency>
110 <groupId>edu.uci.ics.hyracks</groupId>
111 <artifactId>hyracks-dataflow-common</artifactId>
vinayakba81424a2013-04-06 19:21:13 +0000112 <version>0.2.4</version>
vinayakb59d505d2012-10-29 10:38:02 +0000113 <type>jar</type>
114 <scope>compile</scope>
115 </dependency>
116 <dependency>
117 <groupId>edu.uci.ics.hyracks</groupId>
118 <artifactId>hyracks-data-std</artifactId>
vinayakba81424a2013-04-06 19:21:13 +0000119 <version>0.2.4</version>
vinayakb59d505d2012-10-29 10:38:02 +0000120 </dependency>
121 <dependency>
vinayakb59d505d2012-10-29 10:38:02 +0000122 <groupId>edu.uci.ics.hyracks</groupId>
123 <artifactId>hyracks-storage-am-common</artifactId>
vinayakba81424a2013-04-06 19:21:13 +0000124 <version>0.2.4</version>
vinayakb59d505d2012-10-29 10:38:02 +0000125 <type>jar</type>
126 <scope>compile</scope>
127 </dependency>
128 <dependency>
129 <groupId>edu.uci.ics.hyracks</groupId>
130 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakba81424a2013-04-06 19:21:13 +0000131 <version>0.2.4</version>
vinayakb59d505d2012-10-29 10:38:02 +0000132 <type>jar</type>
133 <scope>compile</scope>
134 </dependency>
135 <dependency>
136 <groupId>edu.uci.ics.hyracks</groupId>
137 <artifactId>hyracks-control-cc</artifactId>
vinayakba81424a2013-04-06 19:21:13 +0000138 <version>0.2.4</version>
vinayakb59d505d2012-10-29 10:38:02 +0000139 <type>jar</type>
140 <scope>compile</scope>
141 </dependency>
142 <dependency>
143 <groupId>edu.uci.ics.hyracks</groupId>
144 <artifactId>hyracks-control-nc</artifactId>
vinayakba81424a2013-04-06 19:21:13 +0000145 <version>0.2.4</version>
vinayakb59d505d2012-10-29 10:38:02 +0000146 <type>jar</type>
147 <scope>compile</scope>
148 </dependency>
149 <dependency>
150 <groupId>edu.uci.ics.hyracks</groupId>
151 <artifactId>hyracks-ipc</artifactId>
vinayakba81424a2013-04-06 19:21:13 +0000152 <version>0.2.4</version>
vinayakb59d505d2012-10-29 10:38:02 +0000153 <type>jar</type>
154 <scope>compile</scope>
155 </dependency>
156 </dependencies>
157</project>