blob: ce15c7ff204791da5018e7abedb38fdf2ef2b249 [file] [log] [blame]
zheilbron4b743912012-07-06 21:37:30 +00001
zheilbronc5441952012-10-02 05:00:15 +00002<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">
alexander.behma0cbaf82012-08-21 08:49:13 +00003 <modelVersion>4.0.0</modelVersion>
4 <groupId>edu.uci.ics.hyracks</groupId>
5 <artifactId>hyracks</artifactId>
zheilbrond974a5b2012-10-02 02:01:06 +00006 <version>0.2.2-SNAPSHOT</version>
alexander.behma0cbaf82012-08-21 08:49:13 +00007 <packaging>pom</packaging>
vinayakb7ff0f4a2010-06-17 19:41:17 +00008
alexander.behma0cbaf82012-08-21 08:49:13 +00009 <properties>
zheilbrond974a5b2012-10-02 02:01:06 +000010 <jvm.extraargs />
alexander.behma0cbaf82012-08-21 08:49:13 +000011 </properties>
vinayakbe663f9c2010-08-19 18:39:26 +000012
alexander.behma0cbaf82012-08-21 08:49:13 +000013 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-release-plugin</artifactId>
18 <version>2.0</version>
19 <configuration>
20 <goals>package source:jar javadoc:jar deploy:deploy</goals>
21 </configuration>
22 </plugin>
23 <plugin>
24 <groupId>org.codehaus.mojo</groupId>
25 <artifactId>versions-maven-plugin</artifactId>
26 <version>1.2</version>
27 </plugin>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-surefire-plugin</artifactId>
31 <configuration>
32 <forkMode>pertest</forkMode>
33 <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>
34 </configuration>
35 </plugin>
36 </plugins>
37 </build>
vinayakb2b1ef152010-08-19 20:09:01 +000038
alexander.behma0cbaf82012-08-21 08:49:13 +000039 <scm>
40 <connection>scm:svn:https://hyracks.googlecode.com/svn/trunk/hyracks</connection>
41 <developerConnection>scm:svn:https://hyracks.googlecode.com/svn/trunk/hyracks</developerConnection>
42 <url>http://code.google.com/p/hyracks/source/browse/#svn/trunk/hyracks</url>
43 </scm>
vinayakb5e5ec2a2010-08-30 05:29:10 +000044
alexander.behma0cbaf82012-08-21 08:49:13 +000045 <distributionManagement>
46 <repository>
47 <id>hyracks-releases</id>
48 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url>
49 </repository>
50 <snapshotRepository>
51 <id>hyracks-snapshots</id>
52 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url>
53 </snapshotRepository>
54 </distributionManagement>
vinayakbbe6efa12010-09-01 07:30:07 +000055
alexander.behma0cbaf82012-08-21 08:49:13 +000056 <reporting>
57 <plugins>
58 <plugin>
59 <groupId>org.apache.maven.plugins</groupId>
60 <artifactId>maven-changelog-plugin</artifactId>
61 </plugin>
62 </plugins>
63 </reporting>
salsubaieebb6a8292011-08-04 19:14:38 +000064
alexander.behma0cbaf82012-08-21 08:49:13 +000065 <repositories>
66 <repository>
67 <id>hyracks-public</id>
68 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
69 </repository>
70 <repository>
71 <id>jboss-public</id>
72 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
73 </repository>
74 </repositories>
zheilbron8dc5b912012-08-19 20:48:06 +000075
alexander.behma0cbaf82012-08-21 08:49:13 +000076 <pluginRepositories>
77 <pluginRepository>
78 <id>hyracks-public</id>
79 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
80 <releases>
81 <updatePolicy>always</updatePolicy>
82 </releases>
83 </pluginRepository>
84 </pluginRepositories>
zheilbron8dc5b912012-08-19 20:48:06 +000085
alexander.behma0cbaf82012-08-21 08:49:13 +000086 <modules>
87 <module>hyracks-ipc</module>
88 <module>hyracks-api</module>
89 <module>hyracks-dataflow-common</module>
90 <module>hyracks-dataflow-std</module>
91 <module>hyracks-dataflow-hadoop</module>
92 <module>hyracks-control</module>
93 <module>hyracks-net</module>
94 <module>hyracks-data</module>
95 <module>hyracks-cli</module>
96 <module>hyracks-storage-common</module>
97 <module>hyracks-storage-am-common</module>
98 <module>hyracks-storage-am-btree</module>
99 <module>hyracks-storage-am-lsm-invertedindex</module>
100 <module>hyracks-storage-am-lsm-common</module>
101 <module>hyracks-storage-am-lsm-btree</module>
102 <module>hyracks-storage-am-lsm-rtree</module>
103 <module>hyracks-storage-am-rtree</module>
104 <module>hyracks-test-support</module>
105 <module>hyracks-tests</module>
106 <module>hyracks-server</module>
107 <module>hyracks-examples</module>
108 <module>hyracks-documentation</module>
109 <module>hyracks-hadoop-compat</module>
110 <module>hyracks-algebricks</module>
111 <!--module>hyracks-yarn</module -->
112 <module>hyracks-maven-plugins</module>
113 </modules>
vinayakb7ff0f4a2010-06-17 19:41:17 +0000114</project>