blob: 7bb894925379291d4e6f0f89ff7a5e58cc71155d [file] [log] [blame]
buyingyi6bf2ffc2013-06-25 21:19:11 -07001<!-- ! Copyright 2009-2013 by The Regents of the University of California
2 ! Licensed under the Apache License, Version 2.0 (the "License"); ! you may
3 not use this file except in compliance with the License. ! you may obtain
4 a copy of the License from ! ! http://www.apache.org/licenses/LICENSE-2.0
5 ! ! Unless required by applicable law or agreed to in writing, software !
6 distributed under the License is distributed on an "AS IS" BASIS, ! WITHOUT
7 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! See the
8 License for the specific language governing permissions and ! limitations
9 under the License. ! -->
buyingyi7833f6d2013-07-14 20:37:04 -070010<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">
buyingyi7f356c12012-10-07 00:23:17 +000011 <modelVersion>4.0.0</modelVersion>
12 <artifactId>pregelix-dataflow</artifactId>
13 <packaging>jar</packaging>
14 <name>pregelix-dataflow</name>
15
16 <parent>
buyingyi55df5212013-03-24 07:20:08 +000017 <groupId>edu.uci.ics.hyracks</groupId>
18 <artifactId>pregelix</artifactId>
buyingyi3e3cf872013-07-15 14:58:18 -070019 <version>0.2.8-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000020 </parent>
buyingyi7f356c12012-10-07 00:23:17 +000021
22
23 <properties>
24 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25 </properties>
26
27 <build>
28 <plugins>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
31 <artifactId>maven-compiler-plugin</artifactId>
32 <version>2.0.2</version>
33 <configuration>
buyingyi55df5212013-03-24 07:20:08 +000034 <source>1.7</source>
35 <target>1.7</target>
36 <fork>true</fork>
buyingyi7f356c12012-10-07 00:23:17 +000037 </configuration>
38 </plugin>
39 <plugin>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-surefire-plugin</artifactId>
42 <version>2.7.2</version>
43 <configuration>
44 <forkMode>pertest</forkMode>
buyingyi1188fd92012-10-22 05:14:34 +000045 <argLine>-enableassertions -Xmx512m -Dfile.encoding=UTF-8
buyingyi7f356c12012-10-07 00:23:17 +000046 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
47 <includes>
48 <include>**/*TestSuite.java</include>
49 <include>**/*Test.java</include>
50 </includes>
51 </configuration>
52 </plugin>
53 <plugin>
vinayakb4df31102013-04-06 18:28:48 +000054 <groupId>org.apache.maven.plugins</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000055 <artifactId>maven-clean-plugin</artifactId>
vinayakb4df31102013-04-06 18:28:48 +000056 <version>2.4.1</version>
buyingyi7f356c12012-10-07 00:23:17 +000057 <configuration>
58 <filesets>
59 <fileset>
60 <directory>.</directory>
61 <includes>
62 <include>teststore*</include>
63 <include>edu*</include>
64 <include>actual*</include>
65 <include>build*</include>
66 <include>expect*</include>
67 <include>ClusterController*</include>
68 </includes>
69 </fileset>
70 </filesets>
71 </configuration>
72 </plugin>
73 </plugins>
74 </build>
75
76 <dependencies>
77 <dependency>
78 <groupId>junit</groupId>
79 <artifactId>junit</artifactId>
80 <version>4.8.1</version>
81 <scope>test</scope>
82 </dependency>
83 <dependency>
buyingyie7752502012-10-08 00:35:31 +000084 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000085 <artifactId>pregelix-api</artifactId>
buyingyi3e3cf872013-07-15 14:58:18 -070086 <version>0.2.8-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000087 <type>jar</type>
88 <scope>compile</scope>
89 </dependency>
90 <dependency>
buyingyie7752502012-10-08 00:35:31 +000091 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000092 <artifactId>pregelix-dataflow-std-base</artifactId>
buyingyi3e3cf872013-07-15 14:58:18 -070093 <version>0.2.8-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000094 <type>jar</type>
95 <scope>compile</scope>
96 </dependency>
97 <dependency>
98 <groupId>edu.uci.ics.hyracks</groupId>
99 <artifactId>hyracks-api</artifactId>
buyingyi3e3cf872013-07-15 14:58:18 -0700100 <version>0.2.8-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000101 <type>jar</type>
102 <scope>compile</scope>
103 </dependency>
104 <dependency>
105 <groupId>edu.uci.ics.hyracks</groupId>
106 <artifactId>hyracks-dataflow-common</artifactId>
buyingyi3e3cf872013-07-15 14:58:18 -0700107 <version>0.2.8-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000108 <type>jar</type>
109 <scope>compile</scope>
110 </dependency>
111 <dependency>
112 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000113 <artifactId>hyracks-data-std</artifactId>
buyingyi3e3cf872013-07-15 14:58:18 -0700114 <version>0.2.8-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000115 </dependency>
116 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000117 <groupId>edu.uci.ics.hyracks</groupId>
118 <artifactId>hyracks-storage-am-common</artifactId>
buyingyi3e3cf872013-07-15 14:58:18 -0700119 <version>0.2.8-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000120 <type>jar</type>
121 <scope>compile</scope>
122 </dependency>
123 <dependency>
124 <groupId>edu.uci.ics.hyracks</groupId>
125 <artifactId>hyracks-storage-am-btree</artifactId>
buyingyi3e3cf872013-07-15 14:58:18 -0700126 <version>0.2.8-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000127 <type>jar</type>
128 <scope>compile</scope>
129 </dependency>
130 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000131 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi6bf2ffc2013-06-25 21:19:11 -0700132 <artifactId>hyracks-storage-am-lsm-common</artifactId>
buyingyi3e3cf872013-07-15 14:58:18 -0700133 <version>0.2.8-SNAPSHOT</version>
buyingyi6bf2ffc2013-06-25 21:19:11 -0700134 <type>jar</type>
135 <scope>compile</scope>
136 </dependency>
137 <dependency>
138 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000139 <artifactId>hyracks-control-cc</artifactId>
buyingyi3e3cf872013-07-15 14:58:18 -0700140 <version>0.2.8-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000141 <type>jar</type>
142 <scope>compile</scope>
143 </dependency>
144 <dependency>
145 <groupId>edu.uci.ics.hyracks</groupId>
146 <artifactId>hyracks-control-nc</artifactId>
buyingyi3e3cf872013-07-15 14:58:18 -0700147 <version>0.2.8-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000148 <type>jar</type>
149 <scope>compile</scope>
150 </dependency>
151 <dependency>
152 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000153 <artifactId>hyracks-ipc</artifactId>
buyingyi3e3cf872013-07-15 14:58:18 -0700154 <version>0.2.8-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000155 <type>jar</type>
156 <scope>compile</scope>
157 </dependency>
158 </dependencies>
159</project>