blob: 1d713a52f382ee6dc007732325454041d957c26b [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>
35 <source>1.6</source>
36 <target>1.6</target>
37 </configuration>
38 </plugin>
39 <plugin>
40 <artifactId>maven-assembly-plugin</artifactId>
41 <configuration>
42 <descriptorRefs>
43 <descriptorRef>jar-with-dependencies</descriptorRef>
44 </descriptorRefs>
45 </configuration>
46 <executions>
47 <execution>
48 <id>make-my-jar-with-dependencies</id>
49 <phase>package</phase>
50 <goals>
51 <goal>single</goal>
52 </goals>
53 </execution>
54 </executions>
55 </plugin>
56 <plugin>
57 <groupId>org.apache.maven.plugins</groupId>
58 <artifactId>maven-surefire-plugin</artifactId>
59 <version>2.7.2</version>
60 <configuration>
61 <forkMode>pertest</forkMode>
62 <argLine>-enableassertions -Xmx2047m -Dfile.encoding=UTF-8
63 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
64 <includes>
65 <include>**/*TestSuite.java</include>
66 <include>**/*Test.java</include>
67 </includes>
68 </configuration>
69 </plugin>
70 <plugin>
71 <artifactId>maven-clean-plugin</artifactId>
72 <configuration>
73 <filesets>
74 <fileset>
75 <directory>.</directory>
76 <includes>
77 <include>teststore*</include>
78 <include>edu*</include>
79 <include>actual*</include>
80 <include>build*</include>
81 <include>expect*</include>
82 <include>ClusterController*</include>
83 <include>edu.uci.*</include>
84 </includes>
85 </fileset>
86 </filesets>
87 </configuration>
88 </plugin>
89 </plugins>
90 </build>
91
92 <dependencies>
93 <dependency>
anbangxf61ba4c2013-02-14 10:27:36 +000094 <groupId>junit</groupId>
95 <artifactId>junit</artifactId>
96 <version>4.8.1</version>
97 <scope>test</scope>
98 </dependency>
anbangx648cedf2013-03-07 17:07:13 +000099 <dependency>
100 <groupId>edu.uci.ics.hyracks</groupId>
101 <artifactId>pregelix-core</artifactId>
102 <version>0.2.3-SNAPSHOT</version>
103 <type>jar</type>
104 <scope>compile</scope>
105 </dependency>
106 <dependency>
107 <groupId>edu.uci.ics.hyracks</groupId>
108 <artifactId>pregelix-example</artifactId>
109 <version>0.2.3-SNAPSHOT</version>
110 <type>jar</type>
111 <scope>compile</scope>
112 </dependency>
anbangxf61ba4c2013-02-14 10:27:36 +0000113 </dependencies>
114
115 <scm>
116 <connection>scm:svn:https://hyracks.googlecode.com/svn/trunk/fullstack/pregelix</connection>
117 <developerConnection>scm:svn:https://hyracks.googlecode.com/svn/trunk/fullstack/pregelix</developerConnection>
118 <url>http://code.google.com/p/hyracks/source/browse/#svn/trunk/fullstack/pregelix</url>
119 </scm>
120
121 <distributionManagement>
122 <repository>
123 <id>hyracks-releases</id>
124 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url>
125 </repository>
126 <snapshotRepository>
127 <id>hyracks-snapshots</id>
128 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url>
129 </snapshotRepository>
130 </distributionManagement>
131
132 <reporting>
133 <plugins>
134 <plugin>
135 <groupId>org.apache.maven.plugins</groupId>
136 <artifactId>maven-changelog-plugin</artifactId>
137 </plugin>
138 </plugins>
139 </reporting>
140
141 <repositories>
142 <repository>
143 <id>hyracks-public</id>
144 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
145 </repository>
146 <repository>
147 <id>jboss-public</id>
148 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
149 </repository>
150 </repositories>
151
152 <pluginRepositories>
153 <pluginRepository>
154 <id>hyracks-public</id>
155 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
156 <releases>
157 <updatePolicy>always</updatePolicy>
158 </releases>
159 </pluginRepository>
160 </pluginRepositories>
161</project>
162
163