blob: 57f9f66fab6387ec39ff139ef2e31eb511faaf9c [file] [log] [blame]
Ian Maxon928bbd12015-09-14 17:12:48 -07001<!--
2 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
18 !-->
Vinayak Borkar9cca81b2013-12-11 21:53:45 -080019<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/xsd/maven-4.0.0.xsd">
vinayakb38b7ca42012-03-05 05:44:15 +000020 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <artifactId>asterix</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070023 <groupId>org.apache.asterix</groupId>
Ian Maxon4e6a9232015-10-05 12:46:37 -070024 <version>0.8.8-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000025 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000026 <artifactId>asterix-common</artifactId>
Ian4a816dc2014-11-26 15:46:32 -080027
28 <licenses>
29 <license>
30 <name>Apache License, Version 2.0</name>
31 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
32 <distribution>repo</distribution>
33 <comments>A business-friendly OSS license</comments>
34 </license>
35 </licenses>
36
vinayakb38b7ca42012-03-05 05:44:15 +000037 <build>
38 <plugins>
39 <plugin>
ramangrover296c282a12013-04-28 22:52:35 -070040 <groupId>org.jvnet.jaxb2.maven2</groupId>
41 <artifactId>maven-jaxb2-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070042 <version>0.9.0</version>
ramangrover296c282a12013-04-28 22:52:35 -070043 <executions>
44 <execution>
45 <id>configuration</id>
46 <goals>
47 <goal>generate</goal>
48 </goals>
49 <configuration>
50 <args>
51 <arg>-Xsetters</arg>
52 <arg>-Xvalue-constructor</arg>
53 </args>
54 <plugins>
55 <plugin>
56 <groupId>org.jvnet.jaxb2_commons</groupId>
57 <artifactId>jaxb2-basics</artifactId>
58 <version>0.6.2</version>
59 </plugin>
60 <plugin>
61 <groupId>org.jvnet.jaxb2_commons</groupId>
62 <artifactId>jaxb2-value-constructor</artifactId>
63 <version>3.0</version>
64 </plugin>
65 </plugins>
66 <schemaDirectory>src/main/resources/schema</schemaDirectory>
67 <schemaIncludes>
68 <include>asterix-conf.xsd</include>
69 </schemaIncludes>
Ian Maxonf18bba22015-08-21 12:35:14 -070070 <generatePackage>org.apache.asterix.common.configuration</generatePackage>
ramangrover296c282a12013-04-28 22:52:35 -070071 <bindingDirectory>src/main/resources/schema</bindingDirectory>
72 <bindingIncludes>
73 <bindingInclude>jaxb-bindings.xjb</bindingInclude>
74 </bindingIncludes>
75 <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory>
76 </configuration>
77 </execution>
ramangrover29b2201c42013-05-30 15:40:24 -070078 <execution>
79 <id>cluster</id>
80 <goals>
81 <goal>generate</goal>
82 </goals>
83 <configuration>
84 <args>
85 <arg>-Xsetters</arg>
86 <arg>-Xvalue-constructor</arg>
87 </args>
88 <plugins>
89 <plugin>
90 <groupId>org.jvnet.jaxb2_commons</groupId>
91 <artifactId>jaxb2-basics</artifactId>
92 <version>0.6.2</version>
93 </plugin>
94 <plugin>
95 <groupId>org.jvnet.jaxb2_commons</groupId>
96 <artifactId>jaxb2-value-constructor</artifactId>
97 <version>3.0</version>
98 </plugin>
99 </plugins>
100 <schemaDirectory>src/main/resources/schema</schemaDirectory>
101 <schemaIncludes>
102 <include>cluster.xsd</include>
103 </schemaIncludes>
Ian Maxonf18bba22015-08-21 12:35:14 -0700104 <generatePackage>org.apache.asterix.event.schema.cluster</generatePackage>
ramangrover29b2201c42013-05-30 15:40:24 -0700105 <generateDirectory>${project.build.directory}/generated-sources/cluster</generateDirectory>
106 <bindingDirectory>src/main/resources/schema</bindingDirectory>
107 <bindingIncludes>
108 <bindingInclude>jaxb-bindings.xjb</bindingInclude>
109 </bindingIncludes>
110 </configuration>
111 </execution>
Ian Maxon69375a12015-06-29 16:12:53 -0700112 <execution>
113 <id>yarn_cluster</id>
114 <goals>
115 <goal>generate</goal>
116 </goals>
117 <configuration>
118 <args>
119 <arg>-Xsetters</arg>
120 <arg>-Xvalue-constructor</arg>
121 </args>
122 <plugins>
123 <plugin>
124 <groupId>org.jvnet.jaxb2_commons</groupId>
125 <artifactId>jaxb2-basics</artifactId>
126 <version>0.6.2</version>
127 </plugin>
128 <plugin>
129 <groupId>org.jvnet.jaxb2_commons</groupId>
130 <artifactId>jaxb2-value-constructor</artifactId>
131 <version>3.0</version>
132 </plugin>
133 </plugins>
134 <schemaDirectory>src/main/resources/schema</schemaDirectory>
135 <schemaIncludes>
136 <include>yarn_cluster.xsd</include>
137 </schemaIncludes>
Ian Maxonf18bba22015-08-21 12:35:14 -0700138 <generatePackage>org.apache.asterix.event.schema.yarnCluster</generatePackage>
Ian Maxon69375a12015-06-29 16:12:53 -0700139 <generateDirectory>${project.build.directory}/generated-sources/yarn_cluster</generateDirectory>
140 <bindingDirectory>src/main/resources/schema</bindingDirectory>
141 <bindingIncludes>
142 <bindingInclude>jaxb-bindings.xjb</bindingInclude>
143 </bindingIncludes>
144 </configuration>
145 </execution>
ramangrover296c282a12013-04-28 22:52:35 -0700146 </executions>
147 </plugin>
ramangrover29330a5412013-04-29 20:59:17 -0700148 <plugin>
149 <groupId>org.apache.maven.plugins</groupId>
150 <artifactId>maven-jar-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -0700151 <version>2.4</version>
ramangrover29330a5412013-04-29 20:59:17 -0700152 <configuration>
153 <includes>
154 <include>**/*.class</include>
155 </includes>
156 </configuration>
157 <executions>
158 <execution>
159 <goals>
160 <goal>test-jar</goal>
161 </goals>
162 </execution>
163 </executions>
164 </plugin>
vinayakb38b7ca42012-03-05 05:44:15 +0000165 </plugins>
166 </build>
167
168 <dependencies>
169 <dependency>
Raman Grovercbc00342013-04-22 21:16:54 -0700170 <groupId>commons-io</groupId>
171 <artifactId>commons-io</artifactId>
Raman Grovercbc00342013-04-22 21:16:54 -0700172 </dependency>
173 <dependency>
174 <groupId>commons-httpclient</groupId>
175 <artifactId>commons-httpclient</artifactId>
176 <version>3.0.1</version>
177 </dependency>
178 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700179 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000180 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000181 </dependency>
182 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700183 <groupId>org.apache.hyracks</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +0000184 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +0000185 </dependency>
186 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700187 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000188 <artifactId>hyracks-storage-am-lsm-common</artifactId>
189 </dependency>
ramangrover29330a5412013-04-29 20:59:17 -0700190 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700191 <groupId>org.apache.hyracks</groupId>
ramangrover29f9f78342013-05-23 15:07:39 -0700192 <artifactId>hyracks-storage-am-common</artifactId>
193 </dependency>
194 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700195 <groupId>org.apache.hyracks</groupId>
ramangrover29f9f78342013-05-23 15:07:39 -0700196 <artifactId>hyracks-api</artifactId>
197 </dependency>
198 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700199 <groupId>org.apache.asterix</groupId>
ramangrover29330a5412013-04-29 20:59:17 -0700200 <artifactId>asterix-test-framework</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700201 <version>0.8.8-SNAPSHOT</version>
ramangrover29330a5412013-04-29 20:59:17 -0700202 <scope>test</scope>
203 </dependency>
204 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700205 <groupId>org.apache.hyracks</groupId>
zheilbron25cb8bf2013-06-04 00:04:04 -0700206 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
207 </dependency>
208 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700209 <groupId>org.apache.hyracks</groupId>
zheilbron25cb8bf2013-06-04 00:04:04 -0700210 <artifactId>
211 hyracks-storage-am-lsm-invertedindex
212 </artifactId>
213 </dependency>
214 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700215 <groupId>org.apache.hyracks</groupId>
zheilbron25cb8bf2013-06-04 00:04:04 -0700216 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
zheilbronba60a382013-06-04 00:48:52 -0700217 </dependency>
218 <dependency>
Madhusudan.C.S117fdf92013-06-02 23:46:44 -0700219 <groupId>com.fasterxml.jackson.core</groupId>
220 <artifactId>jackson-core</artifactId>
221 <version>2.2.0</version>
222 </dependency>
223 <dependency>
224 <groupId>org.codehaus.jackson</groupId>
225 <artifactId>jackson-mapper-asl</artifactId>
226 <version>1.9.12</version>
zheilbron25cb8bf2013-06-04 00:04:04 -0700227 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000228 </dependencies>
229
230</project>