blob: 78f9589f28efb404e07161cb2d00745966c7b342 [file] [log] [blame]
zheilbron4b743912012-07-06 21:37:30 +00001
zheilbron8dc5b912012-08-19 20:48:06 +00002<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
alexander.behma0cbaf82012-08-21 08:49:13 +00003 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.hyracks</groupId>
6 <artifactId>hyracks</artifactId>
7 <version>0.2.1-SNAPSHOT</version>
8 <packaging>pom</packaging>
vinayakb7ff0f4a2010-06-17 19:41:17 +00009
alexander.behma0cbaf82012-08-21 08:49:13 +000010 <properties>
11 <jvm.extraargs></jvm.extraargs>
12 </properties>
vinayakbe663f9c2010-08-19 18:39:26 +000013
alexander.behma0cbaf82012-08-21 08:49:13 +000014 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-release-plugin</artifactId>
19 <version>2.0</version>
20 <configuration>
21 <goals>package source:jar javadoc:jar deploy:deploy</goals>
22 </configuration>
23 </plugin>
24 <plugin>
25 <groupId>org.codehaus.mojo</groupId>
26 <artifactId>versions-maven-plugin</artifactId>
27 <version>1.2</version>
28 </plugin>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
31 <artifactId>maven-surefire-plugin</artifactId>
32 <configuration>
33 <forkMode>pertest</forkMode>
34 <argLine>-enableassertions -Djava.util.logging.config.file=${user.home}/logging.properties -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n ${jvm.extraargs}</argLine>
35 </configuration>
36 </plugin>
37 </plugins>
38 </build>
vinayakb2b1ef152010-08-19 20:09:01 +000039
alexander.behma0cbaf82012-08-21 08:49:13 +000040 <scm>
41 <connection>scm:svn:https://hyracks.googlecode.com/svn/trunk/hyracks</connection>
42 <developerConnection>scm:svn:https://hyracks.googlecode.com/svn/trunk/hyracks</developerConnection>
43 <url>http://code.google.com/p/hyracks/source/browse/#svn/trunk/hyracks</url>
44 </scm>
vinayakb5e5ec2a2010-08-30 05:29:10 +000045
alexander.behma0cbaf82012-08-21 08:49:13 +000046 <distributionManagement>
47 <repository>
48 <id>hyracks-releases</id>
49 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url>
50 </repository>
51 <snapshotRepository>
52 <id>hyracks-snapshots</id>
53 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url>
54 </snapshotRepository>
55 </distributionManagement>
vinayakbbe6efa12010-09-01 07:30:07 +000056
alexander.behma0cbaf82012-08-21 08:49:13 +000057 <reporting>
58 <plugins>
59 <plugin>
60 <groupId>org.apache.maven.plugins</groupId>
61 <artifactId>maven-changelog-plugin</artifactId>
62 </plugin>
63 </plugins>
64 </reporting>
salsubaieebb6a8292011-08-04 19:14:38 +000065
alexander.behma0cbaf82012-08-21 08:49:13 +000066 <repositories>
67 <repository>
68 <id>hyracks-public</id>
69 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
70 </repository>
71 <repository>
72 <id>jboss-public</id>
73 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
74 </repository>
75 </repositories>
zheilbron8dc5b912012-08-19 20:48:06 +000076
alexander.behma0cbaf82012-08-21 08:49:13 +000077 <pluginRepositories>
78 <pluginRepository>
79 <id>hyracks-public</id>
80 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
81 <releases>
82 <updatePolicy>always</updatePolicy>
83 </releases>
84 </pluginRepository>
85 </pluginRepositories>
zheilbron8dc5b912012-08-19 20:48:06 +000086
alexander.behma0cbaf82012-08-21 08:49:13 +000087 <modules>
88 <module>hyracks-ipc</module>
89 <module>hyracks-api</module>
90 <module>hyracks-dataflow-common</module>
91 <module>hyracks-dataflow-std</module>
92 <module>hyracks-dataflow-hadoop</module>
93 <module>hyracks-control</module>
94 <module>hyracks-net</module>
95 <module>hyracks-data</module>
96 <module>hyracks-cli</module>
97 <module>hyracks-storage-common</module>
98 <module>hyracks-storage-am-common</module>
99 <module>hyracks-storage-am-btree</module>
100 <module>hyracks-storage-am-lsm-invertedindex</module>
101 <module>hyracks-storage-am-lsm-common</module>
102 <module>hyracks-storage-am-lsm-btree</module>
103 <module>hyracks-storage-am-lsm-rtree</module>
104 <module>hyracks-storage-am-rtree</module>
105 <module>hyracks-test-support</module>
106 <module>hyracks-tests</module>
107 <module>hyracks-server</module>
108 <module>hyracks-examples</module>
109 <module>hyracks-documentation</module>
110 <module>hyracks-hadoop-compat</module>
111 <module>hyracks-algebricks</module>
112 <!--module>hyracks-yarn</module -->
113 <module>hyracks-maven-plugins</module>
114 </modules>
vinayakb7ff0f4a2010-06-17 19:41:17 +0000115</project>