blob: dcef05493d9574ce6e4b3d250ef90ac05da2f838 [file] [log] [blame]
ramangrover298be29bd2013-06-11 08:59:44 -07001<!-- ! Copyright 2009-2013 by The Regents of the University of California
2 ! Licensed under the Apache License, Version 2.0 (the "License"); ! you may
3 not use this file except in compliance with the License. ! you may obtain
4 a copy of the License from ! ! http://www.apache.org/licenses/LICENSE-2.0
5 ! ! Unless required by applicable law or agreed to in writing, software !
6 distributed under the License is distributed on an "AS IS" BASIS, ! WITHOUT
7 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! See the
8 License for the specific language governing permissions and ! limitations
9 under the License. ! -->
Vinayak Borkar9cca81b2013-12-11 21:53:45 -080010<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 +000011 <modelVersion>4.0.0</modelVersion>
12 <parent>
13 <artifactId>asterix</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070014 <groupId>org.apache.asterix</groupId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070015 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000016 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000017 <artifactId>asterix-common</artifactId>
Ian4a816dc2014-11-26 15:46:32 -080018
19 <licenses>
20 <license>
21 <name>Apache License, Version 2.0</name>
22 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
23 <distribution>repo</distribution>
24 <comments>A business-friendly OSS license</comments>
25 </license>
26 </licenses>
27
vinayakb38b7ca42012-03-05 05:44:15 +000028 <build>
29 <plugins>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070033 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000034 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000035 <source>1.7</source>
36 <target>1.7</target>
37 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000038 </configuration>
39 </plugin>
ramangrover296c282a12013-04-28 22:52:35 -070040 <plugin>
41 <groupId>org.jvnet.jaxb2.maven2</groupId>
42 <artifactId>maven-jaxb2-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070043 <version>0.9.0</version>
ramangrover296c282a12013-04-28 22:52:35 -070044 <executions>
45 <execution>
46 <id>configuration</id>
47 <goals>
48 <goal>generate</goal>
49 </goals>
50 <configuration>
51 <args>
52 <arg>-Xsetters</arg>
53 <arg>-Xvalue-constructor</arg>
54 </args>
55 <plugins>
56 <plugin>
57 <groupId>org.jvnet.jaxb2_commons</groupId>
58 <artifactId>jaxb2-basics</artifactId>
59 <version>0.6.2</version>
60 </plugin>
61 <plugin>
62 <groupId>org.jvnet.jaxb2_commons</groupId>
63 <artifactId>jaxb2-value-constructor</artifactId>
64 <version>3.0</version>
65 </plugin>
66 </plugins>
67 <schemaDirectory>src/main/resources/schema</schemaDirectory>
68 <schemaIncludes>
69 <include>asterix-conf.xsd</include>
70 </schemaIncludes>
Ian Maxonf18bba22015-08-21 12:35:14 -070071 <generatePackage>org.apache.asterix.common.configuration</generatePackage>
ramangrover296c282a12013-04-28 22:52:35 -070072 <bindingDirectory>src/main/resources/schema</bindingDirectory>
73 <bindingIncludes>
74 <bindingInclude>jaxb-bindings.xjb</bindingInclude>
75 </bindingIncludes>
76 <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory>
77 </configuration>
78 </execution>
ramangrover29b2201c42013-05-30 15:40:24 -070079 <execution>
80 <id>cluster</id>
81 <goals>
82 <goal>generate</goal>
83 </goals>
84 <configuration>
85 <args>
86 <arg>-Xsetters</arg>
87 <arg>-Xvalue-constructor</arg>
88 </args>
89 <plugins>
90 <plugin>
91 <groupId>org.jvnet.jaxb2_commons</groupId>
92 <artifactId>jaxb2-basics</artifactId>
93 <version>0.6.2</version>
94 </plugin>
95 <plugin>
96 <groupId>org.jvnet.jaxb2_commons</groupId>
97 <artifactId>jaxb2-value-constructor</artifactId>
98 <version>3.0</version>
99 </plugin>
100 </plugins>
101 <schemaDirectory>src/main/resources/schema</schemaDirectory>
102 <schemaIncludes>
103 <include>cluster.xsd</include>
104 </schemaIncludes>
Ian Maxonf18bba22015-08-21 12:35:14 -0700105 <generatePackage>org.apache.asterix.event.schema.cluster</generatePackage>
ramangrover29b2201c42013-05-30 15:40:24 -0700106 <generateDirectory>${project.build.directory}/generated-sources/cluster</generateDirectory>
107 <bindingDirectory>src/main/resources/schema</bindingDirectory>
108 <bindingIncludes>
109 <bindingInclude>jaxb-bindings.xjb</bindingInclude>
110 </bindingIncludes>
111 </configuration>
112 </execution>
Ian Maxon69375a12015-06-29 16:12:53 -0700113 <execution>
114 <id>yarn_cluster</id>
115 <goals>
116 <goal>generate</goal>
117 </goals>
118 <configuration>
119 <args>
120 <arg>-Xsetters</arg>
121 <arg>-Xvalue-constructor</arg>
122 </args>
123 <plugins>
124 <plugin>
125 <groupId>org.jvnet.jaxb2_commons</groupId>
126 <artifactId>jaxb2-basics</artifactId>
127 <version>0.6.2</version>
128 </plugin>
129 <plugin>
130 <groupId>org.jvnet.jaxb2_commons</groupId>
131 <artifactId>jaxb2-value-constructor</artifactId>
132 <version>3.0</version>
133 </plugin>
134 </plugins>
135 <schemaDirectory>src/main/resources/schema</schemaDirectory>
136 <schemaIncludes>
137 <include>yarn_cluster.xsd</include>
138 </schemaIncludes>
Ian Maxonf18bba22015-08-21 12:35:14 -0700139 <generatePackage>org.apache.asterix.event.schema.yarnCluster</generatePackage>
Ian Maxon69375a12015-06-29 16:12:53 -0700140 <generateDirectory>${project.build.directory}/generated-sources/yarn_cluster</generateDirectory>
141 <bindingDirectory>src/main/resources/schema</bindingDirectory>
142 <bindingIncludes>
143 <bindingInclude>jaxb-bindings.xjb</bindingInclude>
144 </bindingIncludes>
145 </configuration>
146 </execution>
ramangrover296c282a12013-04-28 22:52:35 -0700147 </executions>
148 </plugin>
ramangrover29330a5412013-04-29 20:59:17 -0700149 <plugin>
150 <groupId>org.apache.maven.plugins</groupId>
151 <artifactId>maven-jar-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -0700152 <version>2.4</version>
ramangrover29330a5412013-04-29 20:59:17 -0700153 <configuration>
154 <includes>
155 <include>**/*.class</include>
156 </includes>
157 </configuration>
158 <executions>
159 <execution>
160 <goals>
161 <goal>test-jar</goal>
162 </goals>
163 </execution>
164 </executions>
165 </plugin>
vinayakb38b7ca42012-03-05 05:44:15 +0000166 </plugins>
167 </build>
168
169 <dependencies>
170 <dependency>
Raman Grovercbc00342013-04-22 21:16:54 -0700171 <groupId>commons-io</groupId>
172 <artifactId>commons-io</artifactId>
Raman Grovercbc00342013-04-22 21:16:54 -0700173 </dependency>
174 <dependency>
175 <groupId>commons-httpclient</groupId>
176 <artifactId>commons-httpclient</artifactId>
177 <version>3.0.1</version>
178 </dependency>
179 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700180 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000181 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000182 </dependency>
183 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700184 <groupId>org.apache.hyracks</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +0000185 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +0000186 </dependency>
187 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700188 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000189 <artifactId>hyracks-storage-am-lsm-common</artifactId>
190 </dependency>
ramangrover29330a5412013-04-29 20:59:17 -0700191 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700192 <groupId>org.apache.hyracks</groupId>
ramangrover29f9f78342013-05-23 15:07:39 -0700193 <artifactId>hyracks-storage-am-common</artifactId>
194 </dependency>
195 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700196 <groupId>org.apache.hyracks</groupId>
ramangrover29f9f78342013-05-23 15:07:39 -0700197 <artifactId>hyracks-api</artifactId>
198 </dependency>
199 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700200 <groupId>org.apache.asterix</groupId>
ramangrover29330a5412013-04-29 20:59:17 -0700201 <artifactId>asterix-test-framework</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700202 <version>0.8.7-SNAPSHOT</version>
ramangrover29330a5412013-04-29 20:59:17 -0700203 <scope>test</scope>
204 </dependency>
205 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700206 <groupId>org.apache.hyracks</groupId>
zheilbron25cb8bf2013-06-04 00:04:04 -0700207 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
208 </dependency>
209 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700210 <groupId>org.apache.hyracks</groupId>
zheilbron25cb8bf2013-06-04 00:04:04 -0700211 <artifactId>
212 hyracks-storage-am-lsm-invertedindex
213 </artifactId>
214 </dependency>
215 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700216 <groupId>org.apache.hyracks</groupId>
zheilbron25cb8bf2013-06-04 00:04:04 -0700217 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
zheilbronba60a382013-06-04 00:48:52 -0700218 </dependency>
219 <dependency>
Madhusudan.C.S117fdf92013-06-02 23:46:44 -0700220 <groupId>com.fasterxml.jackson.core</groupId>
221 <artifactId>jackson-core</artifactId>
222 <version>2.2.0</version>
223 </dependency>
224 <dependency>
225 <groupId>org.codehaus.jackson</groupId>
226 <artifactId>jackson-mapper-asl</artifactId>
227 <version>1.9.12</version>
zheilbron25cb8bf2013-06-04 00:04:04 -0700228 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000229 </dependencies>
230
231</project>
232