blob: bdfe7a12dcaef0dbb95d67ad7bf31fdb72a70b2a [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>
Ian Maxon6cbcf012014-09-19 15:58:48 -070024 <version>0.2.14-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>
buyingyi7f356c12012-10-07 00:23:17 +000082 <artifactId>maven-clean-plugin</artifactId>
buyingyi9d71c882013-08-21 00:37:34 -070083 <version>2.5</version>
buyingyi7f356c12012-10-07 00:23:17 +000084 <configuration>
85 <filesets>
86 <fileset>
87 <directory>.</directory>
88 <includes>
89 <include>teststore*</include>
90 <include>edu*</include>
91 <include>actual*</include>
92 <include>build*</include>
93 <include>expect*</include>
94 <include>ClusterController*</include>
95 <include>edu.uci.*</include>
buyingyi7ac14d42013-07-19 13:05:47 -070096 <include>dev*</include>
buyingyi7f356c12012-10-07 00:23:17 +000097 </includes>
98 </fileset>
99 </filesets>
100 </configuration>
101 </plugin>
102 </plugins>
103 </build>
104
105 <dependencies>
106 <dependency>
buyingyie7752502012-10-08 00:35:31 +0000107 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000108 <artifactId>pregelix-core</artifactId>
Ian Maxon6cbcf012014-09-19 15:58:48 -0700109 <version>0.2.14-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000110 <type>jar</type>
111 <scope>compile</scope>
112 </dependency>
113 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000114 <groupId>com.google.collections</groupId>
115 <artifactId>google-collections</artifactId>
116 <version>1.0</version>
117 </dependency>
118 </dependencies>
119
120</project>