blob: ebed72ce3abdcb54ac60384a549b0d27e4e20bbc [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>
anbangxed8b8eb2013-03-25 08:23:28 +00006 <version>0.2.4-SNAPSHOT</version>
anbangxf61ba4c2013-02-14 10:27:36 +00007 <name>genomix-pregelix</name>
8
9 <properties>
10 <jvm.extraargs/>
11 </properties>
12
13 <profiles>
14 <profile>
15 <id>macosx</id>
16 <activation>
17 <os>
18 <name>mac os x</name>
19 </os>
20 <jdk>1.7</jdk>
21 </activation>
22 <properties>
23 <jvm.extraargs>-Djava.nio.channels.spi.SelectorProvider=sun.nio.ch.KQueueSelectorProvider</jvm.extraargs>
24 </properties>
25 </profile>
26 </profiles>
27
28 <build>
29 <plugins>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-compiler-plugin</artifactId>
33 <version>2.0.2</version>
34 <configuration>
anbangx562c2fc2013-03-13 20:59:25 +000035 <source>1.7</source>
36 <target>1.7</target>
37 <fork>true</fork>
anbangxf61ba4c2013-02-14 10:27:36 +000038 </configuration>
39 </plugin>
40 <plugin>
41 <artifactId>maven-assembly-plugin</artifactId>
42 <configuration>
43 <descriptorRefs>
44 <descriptorRef>jar-with-dependencies</descriptorRef>
45 </descriptorRefs>
46 </configuration>
47 <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>
56 </plugin>
57 <plugin>
58 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-surefire-plugin</artifactId>
60 <version>2.7.2</version>
61 <configuration>
62 <forkMode>pertest</forkMode>
63 <argLine>-enableassertions -Xmx2047m -Dfile.encoding=UTF-8
64 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
65 <includes>
66 <include>**/*TestSuite.java</include>
67 <include>**/*Test.java</include>
68 </includes>
69 </configuration>
70 </plugin>
71 <plugin>
72 <artifactId>maven-clean-plugin</artifactId>
73 <configuration>
74 <filesets>
75 <fileset>
76 <directory>.</directory>
77 <includes>
78 <include>teststore*</include>
79 <include>edu*</include>
80 <include>actual*</include>
81 <include>build*</include>
82 <include>expect*</include>
83 <include>ClusterController*</include>
84 <include>edu.uci.*</include>
85 </includes>
86 </fileset>
87 </filesets>
88 </configuration>
89 </plugin>
90 </plugins>
91 </build>
92
93 <dependencies>
94 <dependency>
anbangxf61ba4c2013-02-14 10:27:36 +000095 <groupId>junit</groupId>
96 <artifactId>junit</artifactId>
97 <version>4.8.1</version>
98 <scope>test</scope>
99 </dependency>
anbangx648cedf2013-03-07 17:07:13 +0000100 <dependency>
101 <groupId>edu.uci.ics.hyracks</groupId>
102 <artifactId>pregelix-core</artifactId>
anbangxed8b8eb2013-03-25 08:23:28 +0000103 <version>0.2.4-SNAPSHOT</version>
anbangx648cedf2013-03-07 17:07:13 +0000104 <type>jar</type>
105 <scope>compile</scope>
106 </dependency>
107 <dependency>
108 <groupId>edu.uci.ics.hyracks</groupId>
109 <artifactId>pregelix-example</artifactId>
anbangxed8b8eb2013-03-25 08:23:28 +0000110 <version>0.2.4-SNAPSHOT</version>
anbangx648cedf2013-03-07 17:07:13 +0000111 <type>jar</type>
112 <scope>compile</scope>
113 </dependency>
anbangx69e64e42013-03-31 02:41:50 +0000114 <dependency>
115 <groupId>edu.uci.ics.hyracks</groupId>
116 <artifactId>genomix-data</artifactId>
117 <version>0.2.4-SNAPSHOT</version>
118 <type>jar</type>
119 <scope>compile</scope>
120 </dependency>
anbangxf61ba4c2013-02-14 10:27:36 +0000121 </dependencies>
122
123 <scm>
124 <connection>scm:svn:https://hyracks.googlecode.com/svn/trunk/fullstack/pregelix</connection>
125 <developerConnection>scm:svn:https://hyracks.googlecode.com/svn/trunk/fullstack/pregelix</developerConnection>
126 <url>http://code.google.com/p/hyracks/source/browse/#svn/trunk/fullstack/pregelix</url>
127 </scm>
128
129 <distributionManagement>
130 <repository>
131 <id>hyracks-releases</id>
132 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url>
133 </repository>
134 <snapshotRepository>
135 <id>hyracks-snapshots</id>
136 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url>
137 </snapshotRepository>
138 </distributionManagement>
139
140 <reporting>
141 <plugins>
142 <plugin>
143 <groupId>org.apache.maven.plugins</groupId>
144 <artifactId>maven-changelog-plugin</artifactId>
145 </plugin>
146 </plugins>
147 </reporting>
148
149 <repositories>
150 <repository>
151 <id>hyracks-public</id>
152 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
153 </repository>
154 <repository>
155 <id>jboss-public</id>
156 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
157 </repository>
158 </repositories>
159
160 <pluginRepositories>
161 <pluginRepository>
162 <id>hyracks-public</id>
163 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
164 <releases>
165 <updatePolicy>always</updatePolicy>
166 </releases>
167 </pluginRepository>
168 </pluginRepositories>
169</project>
170
171