blob: 6069d6d559eb444a94d4edad3a332d619a640aa8 [file] [log] [blame]
Yingyi Buccd6c9d2013-11-13 10:02:21 -08001<!-- ! 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. ! -->
10<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
12 <modelVersion>4.0.0</modelVersion>
13 <artifactId>hyracks-client</artifactId>
14 <name>hyracks-client</name>
15 <parent>
16 <groupId>edu.uci.ics.hyracks</groupId>
17 <artifactId>hyracks</artifactId>
18 <version>0.2.10-SNAPSHOT</version>
19 </parent>
buyingyi55df5212013-03-24 07:20:08 +000020
Yingyi Buccd6c9d2013-11-13 10:02:21 -080021 <build>
22 <plugins>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-compiler-plugin</artifactId>
26 <version>2.0.2</version>
27 <configuration>
28 <source>1.7</source>
29 <target>1.7</target>
30 </configuration>
31 </plugin>
32 <plugin>
33 <groupId>org.apache.maven.plugins</groupId>
34 <artifactId>maven-surefire-plugin</artifactId>
35 <version>2.7.2</version>
36 <configuration>
37 <forkMode>pertest</forkMode>
38 <argLine>-enableassertions -Xmx2047m -XX:MaxPermSize=300m
39 -Dfile.encoding=UTF-8
40 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
41 <includes>
42 <include>**/*TestSuite.java</include>
43 <include>**/*Test.java</include>
44 </includes>
45 </configuration>
46 </plugin>
47 <plugin>
48 <groupId>org.apache.maven.plugins</groupId>
49 <artifactId>maven-clean-plugin</artifactId>
50 <version>2.5</version>
51 <configuration>
52 <filesets>
53 <fileset>
54 <directory>.</directory>
55 <includes>
56 <include>teststore*</include>
57 <include>edu*</include>
58 <include>actual*</include>
59 <include>build*</include>
60 <include>expect*</include>
61 <include>ClusterController*</include>
62 <include>edu.uci.*</include>
63 <include>dev*</include>
64 </includes>
65 </fileset>
66 </filesets>
67 </configuration>
68 </plugin>
69 </plugins>
70 </build>
71 <dependencies>
72 <dependency>
73 <groupId>edu.uci.ics.hyracks</groupId>
74 <artifactId>hyracks-api</artifactId>
75 <version>0.2.10-SNAPSHOT</version>
76 </dependency>
77 <dependency>
78 <groupId>edu.uci.ics.hyracks</groupId>
79 <artifactId>hyracks-net</artifactId>
80 <version>0.2.10-SNAPSHOT</version>
81 </dependency>
82 <dependency>
83 <groupId>edu.uci.ics.hyracks</groupId>
84 <artifactId>hyracks-comm</artifactId>
85 <version>0.2.10-SNAPSHOT</version>
86 </dependency>
87 <dependency>
88 <groupId>edu.uci.ics.hyracks</groupId>
89 <artifactId>hyracks-dataflow-common</artifactId>
90 <version>0.2.10-SNAPSHOT</version>
91 </dependency>
92 <dependency>
93 <groupId>edu.uci.ics.hyracks</groupId>
94 <artifactId>hyracks-control-cc</artifactId>
95 <version>0.2.10-SNAPSHOT</version>
96 </dependency>
97 <dependency>
98 <groupId>edu.uci.ics.hyracks</groupId>
99 <artifactId>hyracks-control-nc</artifactId>
100 <version>0.2.10-SNAPSHOT</version>
101 </dependency>
102 <dependency>
103 <groupId>com.googlecode.json-simple</groupId>
104 <artifactId>json-simple</artifactId>
105 <version>1.1</version>
106 </dependency>
107 <dependency>
108 <groupId>junit</groupId>
109 <artifactId>junit</artifactId>
110 <version>4.8.1</version>
111 <scope>test</scope>
112 </dependency>
113 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000114</project>