blob: 582ab0b6b7dda3e949770f10503a270be82d11f2 [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>
Zachary Heilbron79b4c822014-03-30 14:52:06 -070020 <version>0.2.12-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000021 <packaging>pom</packaging>
22 <name>hivesterix</name>
23
Chris Hillery4fc647c2014-02-13 14:49:58 -080024 <parent>
25 <groupId>edu.uci.ics.hyracks</groupId>
26 <artifactId>fullstack</artifactId>
Zachary Heilbron79b4c822014-03-30 14:52:06 -070027 <version>0.2.12-SNAPSHOT</version>
Chris Hillery4fc647c2014-02-13 14:49:58 -080028 </parent>
29
buyingyi55df5212013-03-24 07:20:08 +000030 <properties>
31 <jvm.extraargs />
32 </properties>
33
34 <profiles>
35 <profile>
36 <id>macosx</id>
37 <activation>
38 <os>
39 <name>mac os x</name>
40 </os>
41 <jdk>1.7</jdk>
42 </activation>
43 <properties>
44 <jvm.extraargs>-Djava.nio.channels.spi.SelectorProvider=sun.nio.ch.KQueueSelectorProvider</jvm.extraargs>
45 </properties>
46 </profile>
47 </profiles>
48
49 <build>
50 <plugins>
51 <plugin>
52 <groupId>org.apache.maven.plugins</groupId>
53 <artifactId>maven-release-plugin</artifactId>
54 <version>2.0</version>
55 <configuration>
56 <goals>package source:jar javadoc:jar deploy:deploy</goals>
57 </configuration>
58 </plugin>
59 <plugin>
60 <groupId>org.codehaus.mojo</groupId>
61 <artifactId>versions-maven-plugin</artifactId>
62 <version>1.2</version>
63 </plugin>
buyingyi55df5212013-03-24 07:20:08 +000064 </plugins>
65 </build>
66
67 <reporting>
68 <plugins>
69 <plugin>
70 <groupId>org.apache.maven.plugins</groupId>
71 <artifactId>maven-changelog-plugin</artifactId>
72 <version>2.2</version>
73 </plugin>
74 </plugins>
75 </reporting>
76
77 <distributionManagement>
78 <repository>
79 <id>hyracks-releases</id>
80 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url>
81 </repository>
82 <snapshotRepository>
83 <id>hyracks-snapshots</id>
84 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url>
85 </snapshotRepository>
86 </distributionManagement>
87
88 <repositories>
Vinayak Borkar29502a02013-12-11 11:18:27 -080089 <repository>
90 <id>maven-central</id>
91 <url>http://repo1.maven.org/maven2/</url>
92 </repository>
buyingyi55df5212013-03-24 07:20:08 +000093 <repository>
94 <id>hyracks-public</id>
95 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
96 </repository>
97 <repository>
98 <id>jboss-public</id>
99 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
100 </repository>
101 <repository>
102 <releases>
103 <enabled>true</enabled>
104 <updatePolicy>always</updatePolicy>
105 <checksumPolicy>warn</checksumPolicy>
106 </releases>
107 <snapshots>
108 <enabled>true</enabled>
109 <updatePolicy>always</updatePolicy>
110 <checksumPolicy>fail</checksumPolicy>
111 </snapshots>
112 <id>third-party</id>
113 <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party</url>
114 </repository>
115 <repository>
116 <releases>
117 <enabled>true</enabled>
118 <updatePolicy>always</updatePolicy>
119 <checksumPolicy>warn</checksumPolicy>
120 </releases>
121 <snapshots>
122 <enabled>true</enabled>
123 <updatePolicy>always</updatePolicy>
124 <checksumPolicy>fail</checksumPolicy>
125 </snapshots>
126 <id>hyracks-public-release</id>
127 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-public-releases</url>
128 </repository>
129 </repositories>
130
131 <pluginRepositories>
132 <pluginRepository>
133 <id>hyracks-public</id>
134 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
135 <releases>
136 <updatePolicy>always</updatePolicy>
137 </releases>
138 </pluginRepository>
139 </pluginRepositories>
140
141 <modules>
142 <module>hivesterix-runtime</module>
143 <module>hivesterix-translator</module>
144 <module>hivesterix-optimizer</module>
145 <module>hivesterix-serde</module>
146 <module>hivesterix-dist</module>
147 <module>hivesterix-common</module>
148 </modules>
149</project>