blob: d94596ec23f37f0fe5301ff4f39286c0b308753d [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>
ramangrover293b221712013-08-01 11:16:42 -070020 <version>0.2.10-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>
Vinayak Borkar29502a02013-12-11 11:18:27 -080096 <repository>
97 <id>maven-central</id>
98 <url>http://repo1.maven.org/maven2/</url>
99 </repository>
buyingyi55df5212013-03-24 07:20:08 +0000100 <repository>
101 <id>hyracks-public</id>
102 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
103 </repository>
104 <repository>
105 <id>jboss-public</id>
106 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
107 </repository>
108 <repository>
109 <releases>
110 <enabled>true</enabled>
111 <updatePolicy>always</updatePolicy>
112 <checksumPolicy>warn</checksumPolicy>
113 </releases>
114 <snapshots>
115 <enabled>true</enabled>
116 <updatePolicy>always</updatePolicy>
117 <checksumPolicy>fail</checksumPolicy>
118 </snapshots>
119 <id>third-party</id>
120 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party</url>
121 </repository>
122 <repository>
123 <releases>
124 <enabled>true</enabled>
125 <updatePolicy>always</updatePolicy>
126 <checksumPolicy>warn</checksumPolicy>
127 </releases>
128 <snapshots>
129 <enabled>true</enabled>
130 <updatePolicy>always</updatePolicy>
131 <checksumPolicy>fail</checksumPolicy>
132 </snapshots>
133 <id>hyracks-public-release</id>
134 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-public-releases</url>
135 </repository>
136 </repositories>
137
138 <pluginRepositories>
139 <pluginRepository>
140 <id>hyracks-public</id>
141 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
142 <releases>
143 <updatePolicy>always</updatePolicy>
144 </releases>
145 </pluginRepository>
146 </pluginRepositories>
147
148 <modules>
149 <module>hivesterix-runtime</module>
150 <module>hivesterix-translator</module>
151 <module>hivesterix-optimizer</module>
152 <module>hivesterix-serde</module>
153 <module>hivesterix-dist</module>
154 <module>hivesterix-common</module>
155 </modules>
156</project>