blob: 7544d7c9b9b8c1aa86c4d840118996d33c259388 [file] [log] [blame]
anbangxf61ba4c2013-02-14 10:27:36 +00001<?xml version="1.0" encoding="UTF-8"?>
2<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">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>edu.uci.ics.pregelix</groupId>
5 <artifactId>genomix-pregelix</artifactId>
anbangx9ce87422013-04-04 02:03:48 +00006 <packaging>jar</packaging>
anbangxed8b8eb2013-03-25 08:23:28 +00007 <version>0.2.4-SNAPSHOT</version>
anbangxf61ba4c2013-02-14 10:27:36 +00008 <name>genomix-pregelix</name>
9
10 <properties>
11 <jvm.extraargs/>
12 </properties>
13
14 <profiles>
15 <profile>
16 <id>macosx</id>
17 <activation>
18 <os>
19 <name>mac os x</name>
20 </os>
21 <jdk>1.7</jdk>
22 </activation>
23 <properties>
24 <jvm.extraargs>-Djava.nio.channels.spi.SelectorProvider=sun.nio.ch.KQueueSelectorProvider</jvm.extraargs>
25 </properties>
26 </profile>
27 </profiles>
28
29 <build>
30 <plugins>
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-compiler-plugin</artifactId>
34 <version>2.0.2</version>
35 <configuration>
anbangx562c2fc2013-03-13 20:59:25 +000036 <source>1.7</source>
37 <target>1.7</target>
38 <fork>true</fork>
anbangxf61ba4c2013-02-14 10:27:36 +000039 </configuration>
40 </plugin>
41 <plugin>
42 <artifactId>maven-assembly-plugin</artifactId>
43 <configuration>
44 <descriptorRefs>
45 <descriptorRef>jar-with-dependencies</descriptorRef>
46 </descriptorRefs>
47 </configuration>
48 <executions>
49 <execution>
50 <id>make-my-jar-with-dependencies</id>
51 <phase>package</phase>
52 <goals>
53 <goal>single</goal>
54 </goals>
55 </execution>
56 </executions>
57 </plugin>
anbangx9ce87422013-04-04 02:03:48 +000058 <plugin>
59 <groupId>org.codehaus.mojo</groupId>
60 <artifactId>appassembler-maven-plugin</artifactId>
61 <version>1.3</version>
62 <executions>
63 <execution>
64 <configuration>
65 <programs>
66 <program>
67 <mainClass>edu.uci.ics.pregelix.example.Client</mainClass>
68 <name>pregelix</name>
69 </program>
70 </programs>
71 <repositoryLayout>flat</repositoryLayout>
72 <repositoryName>lib</repositoryName>
73 </configuration>
74 <phase>package</phase>
75 <goals>
76 <goal>assemble</goal>
77 </goals>
78 </execution>
79 </executions>
80 </plugin>
anbangxf61ba4c2013-02-14 10:27:36 +000081 <plugin>
82 <groupId>org.apache.maven.plugins</groupId>
83 <artifactId>maven-surefire-plugin</artifactId>
84 <version>2.7.2</version>
85 <configuration>
86 <forkMode>pertest</forkMode>
87 <argLine>-enableassertions -Xmx2047m -Dfile.encoding=UTF-8
88 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
89 <includes>
90 <include>**/*TestSuite.java</include>
91 <include>**/*Test.java</include>
92 </includes>
93 </configuration>
94 </plugin>
95 <plugin>
96 <artifactId>maven-clean-plugin</artifactId>
97 <configuration>
98 <filesets>
99 <fileset>
100 <directory>.</directory>
101 <includes>
102 <include>teststore*</include>
103 <include>edu*</include>
104 <include>actual*</include>
105 <include>build*</include>
106 <include>expect*</include>
107 <include>ClusterController*</include>
108 <include>edu.uci.*</include>
109 </includes>
110 </fileset>
111 </filesets>
112 </configuration>
113 </plugin>
114 </plugins>
115 </build>
116
117 <dependencies>
118 <dependency>
anbangxf61ba4c2013-02-14 10:27:36 +0000119 <groupId>junit</groupId>
120 <artifactId>junit</artifactId>
121 <version>4.8.1</version>
122 <scope>test</scope>
123 </dependency>
anbangx648cedf2013-03-07 17:07:13 +0000124 <dependency>
125 <groupId>edu.uci.ics.hyracks</groupId>
126 <artifactId>pregelix-core</artifactId>
anbangxed8b8eb2013-03-25 08:23:28 +0000127 <version>0.2.4-SNAPSHOT</version>
anbangx648cedf2013-03-07 17:07:13 +0000128 <type>jar</type>
129 <scope>compile</scope>
130 </dependency>
131 <dependency>
132 <groupId>edu.uci.ics.hyracks</groupId>
133 <artifactId>pregelix-example</artifactId>
anbangxed8b8eb2013-03-25 08:23:28 +0000134 <version>0.2.4-SNAPSHOT</version>
anbangx648cedf2013-03-07 17:07:13 +0000135 <type>jar</type>
136 <scope>compile</scope>
137 </dependency>
anbangx69e64e42013-03-31 02:41:50 +0000138 <dependency>
139 <groupId>edu.uci.ics.hyracks</groupId>
140 <artifactId>genomix-data</artifactId>
141 <version>0.2.4-SNAPSHOT</version>
142 <type>jar</type>
143 <scope>compile</scope>
144 </dependency>
anbangxf61ba4c2013-02-14 10:27:36 +0000145 </dependencies>
146
147 <scm>
148 <connection>scm:svn:https://hyracks.googlecode.com/svn/trunk/fullstack/pregelix</connection>
149 <developerConnection>scm:svn:https://hyracks.googlecode.com/svn/trunk/fullstack/pregelix</developerConnection>
150 <url>http://code.google.com/p/hyracks/source/browse/#svn/trunk/fullstack/pregelix</url>
151 </scm>
152
153 <distributionManagement>
154 <repository>
155 <id>hyracks-releases</id>
156 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url>
157 </repository>
158 <snapshotRepository>
159 <id>hyracks-snapshots</id>
160 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url>
161 </snapshotRepository>
162 </distributionManagement>
163
164 <reporting>
165 <plugins>
166 <plugin>
167 <groupId>org.apache.maven.plugins</groupId>
168 <artifactId>maven-changelog-plugin</artifactId>
169 </plugin>
170 </plugins>
171 </reporting>
172
173 <repositories>
174 <repository>
175 <id>hyracks-public</id>
176 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
177 </repository>
178 <repository>
179 <id>jboss-public</id>
180 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
181 </repository>
182 </repositories>
183
184 <pluginRepositories>
185 <pluginRepository>
186 <id>hyracks-public</id>
187 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
188 <releases>
189 <updatePolicy>always</updatePolicy>
190 </releases>
191 </pluginRepository>
192 </pluginRepositories>
193</project>
194
195