anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Nan Zhang | 3744b98 | 2013-08-02 19:53:38 -0700 | [diff] [blame] | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | <groupId>edu.uci.ics.pregelix</groupId> |
| 6 | <artifactId>genomix-pregelix</artifactId> |
| 7 | <packaging>jar</packaging> |
| 8 | <version>0.2.6-SNAPSHOT</version> |
| 9 | <name>genomix-pregelix</name> |
anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 10 | |
AnbangX | f60ef35 | 2013-06-17 16:52:01 -0700 | [diff] [blame] | 11 | <properties> |
| 12 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 13 | </properties> |
anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 14 | |
Nan Zhang | 3744b98 | 2013-08-02 19:53:38 -0700 | [diff] [blame] | 15 | <profiles> |
| 16 | <profile> |
| 17 | <id>macosx</id> |
| 18 | <activation> |
| 19 | <os> |
| 20 | <name>mac os x</name> |
| 21 | </os> |
| 22 | <jdk>1.7</jdk> |
| 23 | </activation> |
| 24 | <properties> |
| 25 | <jvm.extraargs>-Djava.nio.channels.spi.SelectorProvider=sun.nio.ch.KQueueSelectorProvider</jvm.extraargs> |
| 26 | </properties> |
| 27 | </profile> |
| 28 | </profiles> |
anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 29 | |
Nan Zhang | 3744b98 | 2013-08-02 19:53:38 -0700 | [diff] [blame] | 30 | <build> |
| 31 | <plugins> |
| 32 | <plugin> |
| 33 | <groupId>org.apache.maven.plugins</groupId> |
| 34 | <artifactId>maven-compiler-plugin</artifactId> |
| 35 | <version>2.0.2</version> |
| 36 | <configuration> |
| 37 | <source>1.7</source> |
| 38 | <target>1.7</target> |
| 39 | <fork>true</fork> |
| 40 | </configuration> |
| 41 | </plugin> |
| 42 | <plugin> |
| 43 | <artifactId>maven-assembly-plugin</artifactId> |
| 44 | <configuration> |
| 45 | <descriptorRefs> |
| 46 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 47 | </descriptorRefs> |
| 48 | </configuration> |
| 49 | <executions> |
| 50 | <execution> |
| 51 | <id>make-my-jar-with-dependencies</id> |
| 52 | <phase>package</phase> |
| 53 | <goals> |
| 54 | <goal>single</goal> |
| 55 | </goals> |
| 56 | </execution> |
| 57 | </executions> |
| 58 | </plugin> |
anbangx | 9ce8742 | 2013-04-04 02:03:48 +0000 | [diff] [blame] | 59 | <plugin> |
| 60 | <groupId>org.codehaus.mojo</groupId> |
| 61 | <artifactId>appassembler-maven-plugin</artifactId> |
| 62 | <version>1.3</version> |
| 63 | <executions> |
| 64 | <execution> |
| 65 | <configuration> |
| 66 | <programs> |
| 67 | <program> |
anbangx | f5ff29d | 2013-04-04 07:31:26 +0000 | [diff] [blame] | 68 | <mainClass>edu.uci.ics.genomix.pregelix.example.Client</mainClass> |
anbangx | 9ce8742 | 2013-04-04 02:03:48 +0000 | [diff] [blame] | 69 | <name>pregelix</name> |
| 70 | </program> |
| 71 | </programs> |
| 72 | <repositoryLayout>flat</repositoryLayout> |
| 73 | <repositoryName>lib</repositoryName> |
| 74 | </configuration> |
| 75 | <phase>package</phase> |
| 76 | <goals> |
| 77 | <goal>assemble</goal> |
| 78 | </goals> |
| 79 | </execution> |
| 80 | </executions> |
| 81 | </plugin> |
Nan Zhang | 3744b98 | 2013-08-02 19:53:38 -0700 | [diff] [blame] | 82 | <plugin> |
| 83 | <groupId>org.apache.maven.plugins</groupId> |
| 84 | <artifactId>maven-surefire-plugin</artifactId> |
| 85 | <version>2.7.2</version> |
| 86 | <configuration> |
| 87 | <forkMode>pertest</forkMode> |
| 88 | <argLine>-enableassertions -Xmx2047m -Dfile.encoding=UTF-8 |
| 89 | -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine> |
| 90 | <includes> |
| 91 | <include>**/*TestSuite.java</include> |
| 92 | <include>**/*Test.java</include> |
| 93 | </includes> |
| 94 | </configuration> |
| 95 | </plugin> |
| 96 | <plugin> |
| 97 | <artifactId>maven-clean-plugin</artifactId> |
| 98 | <configuration> |
| 99 | <filesets> |
| 100 | <fileset> |
| 101 | <directory>.</directory> |
| 102 | <includes> |
| 103 | <include>teststore*</include> |
| 104 | <include>edu*</include> |
| 105 | <include>actual*</include> |
| 106 | <include>build*</include> |
| 107 | <include>expect*</include> |
| 108 | <include>ClusterController*</include> |
| 109 | <include>edu.uci.*</include> |
| 110 | </includes> |
| 111 | </fileset> |
| 112 | </filesets> |
| 113 | </configuration> |
| 114 | </plugin> |
| 115 | </plugins> |
| 116 | </build> |
anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 117 | |
Nan Zhang | 3744b98 | 2013-08-02 19:53:38 -0700 | [diff] [blame] | 118 | <dependencies> |
| 119 | <dependency> |
| 120 | <groupId>junit</groupId> |
| 121 | <artifactId>junit</artifactId> |
| 122 | <version>4.8.1</version> |
| 123 | <scope>test</scope> |
| 124 | </dependency> |
| 125 | <dependency> |
| 126 | <groupId>edu.uci.ics.hyracks</groupId> |
| 127 | <artifactId>pregelix-core</artifactId> |
| 128 | <version>0.2.6-SNAPSHOT</version> |
| 129 | <type>jar</type> |
| 130 | <scope>compile</scope> |
| 131 | </dependency> |
| 132 | <dependency> |
| 133 | <groupId>edu.uci.ics.hyracks</groupId> |
| 134 | <artifactId>genomix-data</artifactId> |
| 135 | <version>0.2.6-SNAPSHOT</version> |
| 136 | <type>jar</type> |
| 137 | <scope>compile</scope> |
| 138 | </dependency> |
| 139 | <dependency> |
| 140 | <groupId>edu.uci.ics.hyracks</groupId> |
| 141 | <artifactId>hyracks-dataflow-std</artifactId> |
| 142 | <version>0.2.6-SNAPSHOT</version> |
| 143 | <type>jar</type> |
| 144 | <scope>compile</scope> |
| 145 | </dependency> |
| 146 | <dependency> |
| 147 | <groupId>edu.uci.ics.hyracks</groupId> |
| 148 | <artifactId>hyracks-api</artifactId> |
| 149 | <version>0.2.6-SNAPSHOT</version> |
| 150 | <type>jar</type> |
| 151 | <scope>compile</scope> |
| 152 | </dependency> |
| 153 | <dependency> |
| 154 | <groupId>edu.uci.ics.hyracks</groupId> |
| 155 | <artifactId>hyracks-dataflow-common</artifactId> |
| 156 | <version>0.2.6-SNAPSHOT</version> |
| 157 | <type>jar</type> |
| 158 | <scope>compile</scope> |
| 159 | </dependency> |
| 160 | <dependency> |
| 161 | <groupId>edu.uci.ics.hyracks</groupId> |
| 162 | <artifactId>hyracks-data-std</artifactId> |
| 163 | <version>0.2.6-SNAPSHOT</version> |
| 164 | </dependency> |
| 165 | <dependency> |
| 166 | <groupId>edu.uci.ics.hyracks</groupId> |
| 167 | <artifactId>hyracks-control-cc</artifactId> |
| 168 | <version>0.2.6-SNAPSHOT</version> |
| 169 | <type>jar</type> |
| 170 | <scope>compile</scope> |
| 171 | </dependency> |
| 172 | <dependency> |
| 173 | <groupId>edu.uci.ics.hyracks</groupId> |
| 174 | <artifactId>hyracks-control-nc</artifactId> |
| 175 | <version>0.2.6-SNAPSHOT</version> |
| 176 | <type>jar</type> |
| 177 | <scope>compile</scope> |
| 178 | </dependency> |
| 179 | <dependency> |
| 180 | <groupId>com.kenai.nbpwr</groupId> |
| 181 | <artifactId>org-apache-commons-io</artifactId> |
| 182 | <version>1.3.1-201002241208</version> |
| 183 | <type>nbm</type> |
| 184 | <scope>test</scope> |
| 185 | </dependency> |
| 186 | <dependency> |
| 187 | <groupId>edu.uci.ics.hyracks.examples</groupId> |
| 188 | <artifactId>hyracks-integration-tests</artifactId> |
| 189 | <version>0.2.6-SNAPSHOT</version> |
| 190 | <scope>test</scope> |
| 191 | </dependency> |
| 192 | <dependency> |
| 193 | <groupId>edu.uci.ics.hyracks</groupId> |
| 194 | <artifactId>hyracks-ipc</artifactId> |
| 195 | <version>0.2.6-SNAPSHOT</version> |
| 196 | <type>jar</type> |
| 197 | <scope>compile</scope> |
| 198 | </dependency> |
| 199 | <dependency> |
| 200 | <groupId>org.apache.hadoop</groupId> |
| 201 | <artifactId>hadoop-core</artifactId> |
| 202 | <version>0.20.2</version> |
| 203 | </dependency> |
| 204 | <dependency> |
| 205 | <groupId>org.apache.hadoop</groupId> |
| 206 | <artifactId>hadoop-test</artifactId> |
| 207 | <version>0.20.2</version> |
| 208 | </dependency> |
| 209 | <dependency> |
| 210 | <groupId>edu.uci.ics.hyracks</groupId> |
| 211 | <artifactId>hyracks-hdfs-core</artifactId> |
| 212 | <version>0.2.6-SNAPSHOT</version> |
| 213 | </dependency> |
| 214 | <dependency> |
| 215 | <groupId>edu.uci.ics.hyracks</groupId> |
| 216 | <artifactId>hyracks-hdfs-core</artifactId> |
| 217 | <version>0.2.6-SNAPSHOT</version> |
| 218 | <type>test-jar</type> |
| 219 | <scope>test</scope> |
| 220 | </dependency> |
| 221 | <dependency> |
| 222 | <groupId>edu.uci.ics.hyracks</groupId> |
| 223 | <artifactId>genomix-hyracks</artifactId> |
| 224 | <version>0.2.6-SNAPSHOT</version> |
| 225 | <type>jar</type> |
| 226 | <scope>compile</scope> |
| 227 | </dependency> |
| 228 | <dependency> |
| 229 | <groupId>edu.uci.ics.hyracks</groupId> |
| 230 | <artifactId>genomix-hadoop</artifactId> |
| 231 | <version>0.2.6-SNAPSHOT</version> |
| 232 | <type>jar</type> |
| 233 | <scope>compile</scope> |
| 234 | </dependency> |
| 235 | </dependencies> |
anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 236 | |
Nan Zhang | 3744b98 | 2013-08-02 19:53:38 -0700 | [diff] [blame] | 237 | <scm> |
| 238 | <connection>scm:svn:https://hyracks.googlecode.com/svn/trunk/fullstack/pregelix</connection> |
| 239 | <developerConnection>scm:svn:https://hyracks.googlecode.com/svn/trunk/fullstack/pregelix</developerConnection> |
| 240 | <url>http://code.google.com/p/hyracks/source/browse/#svn/trunk/fullstack/pregelix</url> |
| 241 | </scm> |
anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 242 | |
Nan Zhang | 3744b98 | 2013-08-02 19:53:38 -0700 | [diff] [blame] | 243 | <distributionManagement> |
| 244 | <repository> |
| 245 | <id>hyracks-releases</id> |
| 246 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url> |
| 247 | </repository> |
| 248 | <snapshotRepository> |
| 249 | <id>hyracks-snapshots</id> |
| 250 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url> |
| 251 | </snapshotRepository> |
| 252 | </distributionManagement> |
anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 253 | |
Nan Zhang | 3744b98 | 2013-08-02 19:53:38 -0700 | [diff] [blame] | 254 | <reporting> |
| 255 | <plugins> |
| 256 | <plugin> |
| 257 | <groupId>org.apache.maven.plugins</groupId> |
| 258 | <artifactId>maven-changelog-plugin</artifactId> |
| 259 | </plugin> |
| 260 | </plugins> |
| 261 | </reporting> |
anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 262 | |
Nan Zhang | 3744b98 | 2013-08-02 19:53:38 -0700 | [diff] [blame] | 263 | <repositories> |
| 264 | <repository> |
| 265 | <id>hyracks-public</id> |
| 266 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 267 | </repository> |
| 268 | <repository> |
| 269 | <id>jboss-public</id> |
| 270 | <url>https://repository.jboss.org/nexus/content/groups/public/</url> |
| 271 | </repository> |
| 272 | </repositories> |
anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 273 | |
Nan Zhang | 3744b98 | 2013-08-02 19:53:38 -0700 | [diff] [blame] | 274 | <pluginRepositories> |
| 275 | <pluginRepository> |
| 276 | <id>hyracks-public</id> |
| 277 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 278 | <releases> |
| 279 | <updatePolicy>always</updatePolicy> |
| 280 | </releases> |
| 281 | </pluginRepository> |
| 282 | </pluginRepositories> |
anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 283 | </project> |
| 284 | |
| 285 | |