blob: d74d95423b0f09c287a3750f3d7e5a804d66f929 [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>
anbangx648cedf2013-03-07 17:07:13 +00006 <version>0.2.3-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>
103 <version>0.2.3-SNAPSHOT</version>
104 <type>jar</type>
105 <scope>compile</scope>
106 </dependency>
107 <dependency>
108 <groupId>edu.uci.ics.hyracks</groupId>
109 <artifactId>pregelix-example</artifactId>
110 <version>0.2.3-SNAPSHOT</version>
111 <type>jar</type>
112 <scope>compile</scope>
113 </dependency>
anbangxf61ba4c2013-02-14 10:27:36 +0000114 </dependencies>
115
116 <scm>
117 <connection>scm:svn:https://hyracks.googlecode.com/svn/trunk/fullstack/pregelix</connection>
118 <developerConnection>scm:svn:https://hyracks.googlecode.com/svn/trunk/fullstack/pregelix</developerConnection>
119 <url>http://code.google.com/p/hyracks/source/browse/#svn/trunk/fullstack/pregelix</url>
120 </scm>
121
122 <distributionManagement>
123 <repository>
124 <id>hyracks-releases</id>
125 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url>
126 </repository>
127 <snapshotRepository>
128 <id>hyracks-snapshots</id>
129 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url>
130 </snapshotRepository>
131 </distributionManagement>
132
133 <reporting>
134 <plugins>
135 <plugin>
136 <groupId>org.apache.maven.plugins</groupId>
137 <artifactId>maven-changelog-plugin</artifactId>
138 </plugin>
139 </plugins>
140 </reporting>
141
142 <repositories>
143 <repository>
144 <id>hyracks-public</id>
145 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
146 </repository>
147 <repository>
148 <id>jboss-public</id>
149 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
150 </repository>
151 </repositories>
152
153 <pluginRepositories>
154 <pluginRepository>
155 <id>hyracks-public</id>
156 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
157 <releases>
158 <updatePolicy>always</updatePolicy>
159 </releases>
160 </pluginRepository>
161 </pluginRepositories>
162</project>
163
164