blob: 329ada470f8fa840559182be0b40322362fb763c [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>
14 <groupId>edu.uci.ics.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>
vinayakb38b7ca42012-03-05 05:44:15 +000018 <build>
19 <plugins>
20 <plugin>
21 <groupId>org.apache.maven.plugins</groupId>
22 <artifactId>maven-compiler-plugin</artifactId>
23 <version>2.0.2</version>
24 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000025 <source>1.7</source>
26 <target>1.7</target>
27 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000028 </configuration>
29 </plugin>
ramangrover296c282a12013-04-28 22:52:35 -070030 <plugin>
31 <groupId>org.jvnet.jaxb2.maven2</groupId>
32 <artifactId>maven-jaxb2-plugin</artifactId>
33 <executions>
34 <execution>
35 <id>configuration</id>
36 <goals>
37 <goal>generate</goal>
38 </goals>
39 <configuration>
40 <args>
41 <arg>-Xsetters</arg>
42 <arg>-Xvalue-constructor</arg>
43 </args>
44 <plugins>
45 <plugin>
46 <groupId>org.jvnet.jaxb2_commons</groupId>
47 <artifactId>jaxb2-basics</artifactId>
48 <version>0.6.2</version>
49 </plugin>
50 <plugin>
51 <groupId>org.jvnet.jaxb2_commons</groupId>
52 <artifactId>jaxb2-value-constructor</artifactId>
53 <version>3.0</version>
54 </plugin>
55 </plugins>
56 <schemaDirectory>src/main/resources/schema</schemaDirectory>
57 <schemaIncludes>
58 <include>asterix-conf.xsd</include>
59 </schemaIncludes>
60 <generatePackage>edu.uci.ics.asterix.common.configuration</generatePackage>
61 <bindingDirectory>src/main/resources/schema</bindingDirectory>
62 <bindingIncludes>
63 <bindingInclude>jaxb-bindings.xjb</bindingInclude>
64 </bindingIncludes>
65 <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory>
66 </configuration>
67 </execution>
ramangrover29b2201c42013-05-30 15:40:24 -070068 <execution>
69 <id>cluster</id>
70 <goals>
71 <goal>generate</goal>
72 </goals>
73 <configuration>
74 <args>
75 <arg>-Xsetters</arg>
76 <arg>-Xvalue-constructor</arg>
77 </args>
78 <plugins>
79 <plugin>
80 <groupId>org.jvnet.jaxb2_commons</groupId>
81 <artifactId>jaxb2-basics</artifactId>
82 <version>0.6.2</version>
83 </plugin>
84 <plugin>
85 <groupId>org.jvnet.jaxb2_commons</groupId>
86 <artifactId>jaxb2-value-constructor</artifactId>
87 <version>3.0</version>
88 </plugin>
89 </plugins>
90 <schemaDirectory>src/main/resources/schema</schemaDirectory>
91 <schemaIncludes>
92 <include>cluster.xsd</include>
93 </schemaIncludes>
94 <generatePackage>edu.uci.ics.asterix.event.schema.cluster</generatePackage>
95 <generateDirectory>${project.build.directory}/generated-sources/cluster</generateDirectory>
96 <bindingDirectory>src/main/resources/schema</bindingDirectory>
97 <bindingIncludes>
98 <bindingInclude>jaxb-bindings.xjb</bindingInclude>
99 </bindingIncludes>
100 </configuration>
101 </execution>
ramangrover296c282a12013-04-28 22:52:35 -0700102 </executions>
103 </plugin>
ramangrover29330a5412013-04-29 20:59:17 -0700104 <plugin>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-jar-plugin</artifactId>
107 <version>2.2</version>
108 <configuration>
109 <includes>
110 <include>**/*.class</include>
111 </includes>
112 </configuration>
113 <executions>
114 <execution>
115 <goals>
116 <goal>test-jar</goal>
117 </goals>
118 </execution>
119 </executions>
120 </plugin>
vinayakb38b7ca42012-03-05 05:44:15 +0000121 </plugins>
122 </build>
123
124 <dependencies>
125 <dependency>
Raman Grovercbc00342013-04-22 21:16:54 -0700126 <groupId>commons-io</groupId>
127 <artifactId>commons-io</artifactId>
128 <version>1.4</version>
129 </dependency>
130 <dependency>
131 <groupId>commons-httpclient</groupId>
132 <artifactId>commons-httpclient</artifactId>
133 <version>3.0.1</version>
134 </dependency>
135 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000136 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000137 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000138 </dependency>
139 <dependency>
140 <groupId>edu.uci.ics.hyracks</groupId>
141 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +0000142 </dependency>
143 <dependency>
ramangrover29330a5412013-04-29 20:59:17 -0700144 <groupId>commons-io</groupId>
145 <artifactId>commons-io</artifactId>
146 <version>1.4</version>
147 </dependency>
148 <dependency>
149 <groupId>commons-httpclient</groupId>
150 <artifactId>commons-httpclient</artifactId>
151 <version>3.0.1</version>
152 </dependency>
153 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000154 <groupId>edu.uci.ics.hyracks</groupId>
155 <artifactId>hyracks-storage-am-lsm-common</artifactId>
156 </dependency>
ramangrover29330a5412013-04-29 20:59:17 -0700157 <dependency>
ramangrover29f9f78342013-05-23 15:07:39 -0700158 <groupId>edu.uci.ics.hyracks</groupId>
159 <artifactId>hyracks-storage-am-common</artifactId>
160 </dependency>
161 <dependency>
162 <groupId>edu.uci.ics.hyracks</groupId>
163 <artifactId>hyracks-api</artifactId>
164 </dependency>
165 <dependency>
ramangrover29330a5412013-04-29 20:59:17 -0700166 <groupId>edu.uci.ics.asterix</groupId>
167 <artifactId>asterix-test-framework</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700168 <version>0.8.7-SNAPSHOT</version>
ramangrover29330a5412013-04-29 20:59:17 -0700169 <scope>test</scope>
170 </dependency>
171 <dependency>
zheilbron25cb8bf2013-06-04 00:04:04 -0700172 <groupId>edu.uci.ics.hyracks</groupId>
173 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
174 </dependency>
175 <dependency>
176 <groupId>edu.uci.ics.hyracks</groupId>
177 <artifactId>
178 hyracks-storage-am-lsm-invertedindex
179 </artifactId>
180 </dependency>
181 <dependency>
182 <groupId>edu.uci.ics.hyracks</groupId>
183 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
zheilbronba60a382013-06-04 00:48:52 -0700184 </dependency>
185 <dependency>
Madhusudan.C.S117fdf92013-06-02 23:46:44 -0700186 <groupId>com.fasterxml.jackson.core</groupId>
187 <artifactId>jackson-core</artifactId>
188 <version>2.2.0</version>
189 </dependency>
190 <dependency>
191 <groupId>org.codehaus.jackson</groupId>
192 <artifactId>jackson-mapper-asl</artifactId>
193 <version>1.9.12</version>
zheilbron25cb8bf2013-06-04 00:04:04 -0700194 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000195 </dependencies>
196
197</project>
198