blob: 055a5f9d638be73ca5155027356bc1bcac3ab27f [file] [log] [blame]
buyingyi55df5212013-03-24 07:20:08 +00001<?xml version="1.0" encoding="UTF-8"?>
Till Westmann276bbc22013-06-05 18:56:27 -07002<!--
3 ! Copyright 2009-2013 by The Regents of the University of California
4 ! Licensed under the Apache License, Version 2.0 (the "License");
5 ! you may not use this file except in compliance with the License.
6 ! you may obtain a copy of the License from
7 !
8 ! http://www.apache.org/licenses/LICENSE-2.0
9 !
10 ! Unless required by applicable law or agreed to in writing, software
11 ! distributed under the License is distributed on an "AS IS" BASIS,
12 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ! See the License for the specific language governing permissions and
14 ! limitations under the License.
15 !-->
vinayakb1ca34f42013-03-25 03:17:01 +000016<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">
buyingyi55df5212013-03-24 07:20:08 +000017 <modelVersion>4.0.0</modelVersion>
18 <groupId>edu.uci.ics.hyracks</groupId>
19 <artifactId>hivesterix</artifactId>
Vinayak Borkarccfbf412013-04-25 11:40:50 -070020 <version>0.2.6-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000021 <packaging>pom</packaging>
22 <name>hivesterix</name>
23
24 <properties>
25 <jvm.extraargs />
26 </properties>
27
28 <profiles>
29 <profile>
30 <id>macosx</id>
31 <activation>
32 <os>
33 <name>mac os x</name>
34 </os>
35 <jdk>1.7</jdk>
36 </activation>
37 <properties>
38 <jvm.extraargs>-Djava.nio.channels.spi.SelectorProvider=sun.nio.ch.KQueueSelectorProvider</jvm.extraargs>
39 </properties>
40 </profile>
41 </profiles>
42
43 <build>
44 <plugins>
45 <plugin>
46 <groupId>org.apache.maven.plugins</groupId>
47 <artifactId>maven-release-plugin</artifactId>
48 <version>2.0</version>
49 <configuration>
50 <goals>package source:jar javadoc:jar deploy:deploy</goals>
51 </configuration>
52 </plugin>
53 <plugin>
54 <groupId>org.codehaus.mojo</groupId>
55 <artifactId>versions-maven-plugin</artifactId>
56 <version>1.2</version>
57 </plugin>
58 <plugin>
59 <groupId>org.apache.maven.plugins</groupId>
60 <artifactId>maven-surefire-plugin</artifactId>
61 <version>2.13</version>
62 <configuration>
63 <forkMode>pertest</forkMode>
64 <argLine>-enableassertions
65 -Djava.util.logging.config.file=${user.home}/logging.properties
66 -Xdebug
67 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
68 ${jvm.extraargs}</argLine>
69 </configuration>
70 </plugin>
71 </plugins>
72 </build>
73
74 <reporting>
75 <plugins>
76 <plugin>
77 <groupId>org.apache.maven.plugins</groupId>
78 <artifactId>maven-changelog-plugin</artifactId>
79 <version>2.2</version>
80 </plugin>
81 </plugins>
82 </reporting>
83
84 <distributionManagement>
85 <repository>
86 <id>hyracks-releases</id>
87 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url>
88 </repository>
89 <snapshotRepository>
90 <id>hyracks-snapshots</id>
91 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url>
92 </snapshotRepository>
93 </distributionManagement>
94
95 <repositories>
96 <repository>
97 <id>hyracks-public</id>
98 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
99 </repository>
100 <repository>
101 <id>jboss-public</id>
102 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
103 </repository>
104 <repository>
105 <releases>
106 <enabled>true</enabled>
107 <updatePolicy>always</updatePolicy>
108 <checksumPolicy>warn</checksumPolicy>
109 </releases>
110 <snapshots>
111 <enabled>true</enabled>
112 <updatePolicy>always</updatePolicy>
113 <checksumPolicy>fail</checksumPolicy>
114 </snapshots>
115 <id>third-party</id>
116 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party</url>
117 </repository>
118 <repository>
119 <releases>
120 <enabled>true</enabled>
121 <updatePolicy>always</updatePolicy>
122 <checksumPolicy>warn</checksumPolicy>
123 </releases>
124 <snapshots>
125 <enabled>true</enabled>
126 <updatePolicy>always</updatePolicy>
127 <checksumPolicy>fail</checksumPolicy>
128 </snapshots>
129 <id>hyracks-public-release</id>
130 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-public-releases</url>
131 </repository>
132 </repositories>
133
134 <pluginRepositories>
135 <pluginRepository>
136 <id>hyracks-public</id>
137 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
138 <releases>
139 <updatePolicy>always</updatePolicy>
140 </releases>
141 </pluginRepository>
142 </pluginRepositories>
143
144 <modules>
145 <module>hivesterix-runtime</module>
146 <module>hivesterix-translator</module>
147 <module>hivesterix-optimizer</module>
148 <module>hivesterix-serde</module>
149 <module>hivesterix-dist</module>
150 <module>hivesterix-common</module>
151 </modules>
152</project>