blob: 1066e3b7e11198ccc542442544ad3344b6f6960e [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
2 ! Copyright 2009-2013 by The Regents of the University of California
3 ! Licensed under the Apache License, Version 2.0 (the "License");
4 ! you may not use this file except in compliance with the License.
5 ! you may obtain a copy of the License from
6 !
7 ! http://www.apache.org/licenses/LICENSE-2.0
8 !
9 ! Unless required by applicable law or agreed to in writing, software
10 ! distributed under the License is distributed on an "AS IS" BASIS,
11 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 ! See the License for the specific language governing permissions and
13 ! limitations under the License.
14 !-->
vinayakb4a6309b2012-10-29 15:44:02 +000015<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/maven-v4_0_0.xsd">
buyingyi7f356c12012-10-07 00:23:17 +000016 <modelVersion>4.0.0</modelVersion>
buyingyi7f356c12012-10-07 00:23:17 +000017 <artifactId>pregelix-example</artifactId>
18 <packaging>jar</packaging>
19 <name>pregelix-example</name>
20
21 <parent>
buyingyie7752502012-10-08 00:35:31 +000022 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000023 <artifactId>pregelix</artifactId>
buyingyi1cf801c2013-07-22 01:41:07 -070024 <version>0.2.10-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000025 </parent>
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>
buyingyi7f356c12012-10-07 00:23:17 +000040 <artifactId>maven-assembly-plugin</artifactId>
vinayakb4df31102013-04-06 18:28:48 +000041 <version>2.2-beta-5</version>
buyingyi7f356c12012-10-07 00:23:17 +000042 <configuration>
buyingyi7f356c12012-10-07 00:23:17 +000043 <descriptorRefs>
44 <descriptorRef>jar-with-dependencies</descriptorRef>
45 </descriptorRefs>
46 </configuration>
buyingyi4c6d6e82012-10-10 11:46:54 +000047 <executions>
48 <execution>
49 <id>make-my-jar-with-dependencies</id>
50 <phase>package</phase>
51 <goals>
52 <goal>single</goal>
53 </goals>
54 </execution>
55 </executions>
buyingyi7f356c12012-10-07 00:23:17 +000056 </plugin>
57 <plugin>
58 <groupId>org.codehaus.mojo</groupId>
59 <artifactId>appassembler-maven-plugin</artifactId>
vinayakb4df31102013-04-06 18:28:48 +000060 <version>1.3</version>
buyingyi7f356c12012-10-07 00:23:17 +000061 <executions>
62 <execution>
63 <configuration>
64 <programs>
65 <program>
66 <mainClass>edu.uci.ics.pregelix.example.Client</mainClass>
67 <name>pregelix</name>
68 </program>
69 </programs>
70 <repositoryLayout>flat</repositoryLayout>
71 <repositoryName>lib</repositoryName>
72 </configuration>
73 <phase>package</phase>
74 <goals>
75 <goal>assemble</goal>
76 </goals>
77 </execution>
78 </executions>
79 </plugin>
80 <plugin>
81 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-surefire-plugin</artifactId>
83 <version>2.7.2</version>
84 <configuration>
85 <forkMode>pertest</forkMode>
buyingyi80bb3cc2013-04-25 00:17:23 -070086 <argLine>-enableassertions -Xmx2047m -XX:MaxPermSize=300m -Dfile.encoding=UTF-8
buyingyi7f356c12012-10-07 00:23:17 +000087 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
88 <includes>
89 <include>**/*TestSuite.java</include>
90 <include>**/*Test.java</include>
91 </includes>
92 </configuration>
93 </plugin>
94 <plugin>
buyingyi55df5212013-03-24 07:20:08 +000095 <groupId>org.apache.maven.plugins</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000096 <artifactId>maven-clean-plugin</artifactId>
vinayakb4df31102013-04-06 18:28:48 +000097 <version>2.4.1</version>
buyingyi7f356c12012-10-07 00:23:17 +000098 <configuration>
99 <filesets>
100 <fileset>
101 <directory>.</directory>
102 <includes>
103 <include>teststore*</include>
104 <include>edu*</include>
105 <include>actual*</include>
106 <include>build*</include>
107 <include>expect*</include>
108 <include>ClusterController*</include>
109 <include>edu.uci.*</include>
buyingyi7ac14d42013-07-19 13:05:47 -0700110 <include>dev*</include>
buyingyi7f356c12012-10-07 00:23:17 +0000111 </includes>
112 </fileset>
113 </filesets>
114 </configuration>
115 </plugin>
116 </plugins>
117 </build>
118
119 <dependencies>
120 <dependency>
buyingyie7752502012-10-08 00:35:31 +0000121 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000122 <artifactId>pregelix-core</artifactId>
buyingyi1cf801c2013-07-22 01:41:07 -0700123 <version>0.2.10-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000124 <type>jar</type>
125 <scope>compile</scope>
126 </dependency>
127 <dependency>
128 <groupId>junit</groupId>
129 <artifactId>junit</artifactId>
130 <version>4.8.1</version>
131 <scope>test</scope>
132 </dependency>
133 <dependency>
134 <groupId>com.google.collections</groupId>
135 <artifactId>google-collections</artifactId>
136 <version>1.0</version>
137 </dependency>
138 </dependencies>
139
140</project>