blob: 20c45ece0dd2b541bbcc093246af7dc73d90f74c [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/maven-v4_0_0.xsd">
vinayakb59d505d2012-10-29 10:38:02 +00002 <modelVersion>4.0.0</modelVersion>
3 <artifactId>pregelix-example</artifactId>
4 <packaging>jar</packaging>
5 <name>pregelix-example</name>
6
7 <parent>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <artifactId>pregelix</artifactId>
vinayakb4f511c82013-03-25 03:17:32 +000010 <version>0.2.4-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +000011 </parent>
12
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 <version>2.0.2</version>
19 <configuration>
buyingyi5df938f2013-03-24 07:20:08 +000020 <source>1.7</source>
21 <target>1.7</target>
22 <fork>true</fork>
vinayakb59d505d2012-10-29 10:38:02 +000023 </configuration>
24 </plugin>
25 <plugin>
26 <artifactId>maven-assembly-plugin</artifactId>
vinayakb5d0e4592013-04-06 18:28:48 +000027 <version>2.2-beta-5</version>
vinayakb59d505d2012-10-29 10:38:02 +000028 <configuration>
29 <descriptorRefs>
30 <descriptorRef>jar-with-dependencies</descriptorRef>
31 </descriptorRefs>
32 </configuration>
33 <executions>
34 <execution>
35 <id>make-my-jar-with-dependencies</id>
36 <phase>package</phase>
37 <goals>
38 <goal>single</goal>
39 </goals>
40 </execution>
41 </executions>
42 </plugin>
43 <plugin>
44 <groupId>org.codehaus.mojo</groupId>
45 <artifactId>appassembler-maven-plugin</artifactId>
vinayakb5d0e4592013-04-06 18:28:48 +000046 <version>1.3</version>
vinayakb59d505d2012-10-29 10:38:02 +000047 <executions>
48 <execution>
49 <configuration>
50 <programs>
51 <program>
52 <mainClass>edu.uci.ics.pregelix.example.Client</mainClass>
53 <name>pregelix</name>
54 </program>
55 </programs>
56 <repositoryLayout>flat</repositoryLayout>
57 <repositoryName>lib</repositoryName>
58 </configuration>
59 <phase>package</phase>
60 <goals>
61 <goal>assemble</goal>
62 </goals>
63 </execution>
64 </executions>
65 </plugin>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-surefire-plugin</artifactId>
69 <version>2.7.2</version>
70 <configuration>
71 <forkMode>pertest</forkMode>
72 <argLine>-enableassertions -Xmx512m -XX:MaxPermSize=300m -Dfile.encoding=UTF-8
73 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
74 <includes>
75 <include>**/*TestSuite.java</include>
76 <include>**/*Test.java</include>
77 </includes>
78 </configuration>
79 </plugin>
80 <plugin>
buyingyi5df938f2013-03-24 07:20:08 +000081 <groupId>org.apache.maven.plugins</groupId>
vinayakb59d505d2012-10-29 10:38:02 +000082 <artifactId>maven-clean-plugin</artifactId>
vinayakb5d0e4592013-04-06 18:28:48 +000083 <version>2.4.1</version>
vinayakb59d505d2012-10-29 10:38:02 +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>
96 </includes>
97 </fileset>
98 </filesets>
99 </configuration>
100 </plugin>
101 </plugins>
102 </build>
103
104 <dependencies>
105 <dependency>
106 <groupId>edu.uci.ics.hyracks</groupId>
107 <artifactId>pregelix-core</artifactId>
vinayakb4f511c82013-03-25 03:17:32 +0000108 <version>0.2.4-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +0000109 <type>jar</type>
110 <scope>compile</scope>
111 </dependency>
112 <dependency>
113 <groupId>junit</groupId>
114 <artifactId>junit</artifactId>
115 <version>4.8.1</version>
116 <scope>test</scope>
117 </dependency>
118 <dependency>
119 <groupId>com.google.collections</groupId>
120 <artifactId>google-collections</artifactId>
121 <version>1.0</version>
122 </dependency>
123 </dependencies>
124
125</project>