blob: ff393b2b85a5662ae09d7190c30c2c54a2a4325e [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>
Till Westmann6212c902014-07-30 15:44:59 -070023 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000024 <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>
Till Westmann6212c902014-07-30 15:44:59 -070033 <version>0.9.0</version>
ramangrover296c282a12013-04-28 22:52:35 -070034 <executions>
35 <execution>
36 <id>configuration</id>
37 <goals>
38 <goal>generate</goal>
39 </goals>
40 <configuration>
41 <args>
42 <arg>-Xsetters</arg>
43 <arg>-Xvalue-constructor</arg>
44 </args>
45 <plugins>
46 <plugin>
47 <groupId>org.jvnet.jaxb2_commons</groupId>
48 <artifactId>jaxb2-basics</artifactId>
49 <version>0.6.2</version>
50 </plugin>
51 <plugin>
52 <groupId>org.jvnet.jaxb2_commons</groupId>
53 <artifactId>jaxb2-value-constructor</artifactId>
54 <version>3.0</version>
55 </plugin>
56 </plugins>
57 <schemaDirectory>src/main/resources/schema</schemaDirectory>
58 <schemaIncludes>
59 <include>asterix-conf.xsd</include>
60 </schemaIncludes>
61 <generatePackage>edu.uci.ics.asterix.common.configuration</generatePackage>
62 <bindingDirectory>src/main/resources/schema</bindingDirectory>
63 <bindingIncludes>
64 <bindingInclude>jaxb-bindings.xjb</bindingInclude>
65 </bindingIncludes>
66 <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory>
67 </configuration>
68 </execution>
ramangrover29b2201c42013-05-30 15:40:24 -070069 <execution>
70 <id>cluster</id>
71 <goals>
72 <goal>generate</goal>
73 </goals>
74 <configuration>
75 <args>
76 <arg>-Xsetters</arg>
77 <arg>-Xvalue-constructor</arg>
78 </args>
79 <plugins>
80 <plugin>
81 <groupId>org.jvnet.jaxb2_commons</groupId>
82 <artifactId>jaxb2-basics</artifactId>
83 <version>0.6.2</version>
84 </plugin>
85 <plugin>
86 <groupId>org.jvnet.jaxb2_commons</groupId>
87 <artifactId>jaxb2-value-constructor</artifactId>
88 <version>3.0</version>
89 </plugin>
90 </plugins>
91 <schemaDirectory>src/main/resources/schema</schemaDirectory>
92 <schemaIncludes>
93 <include>cluster.xsd</include>
94 </schemaIncludes>
95 <generatePackage>edu.uci.ics.asterix.event.schema.cluster</generatePackage>
96 <generateDirectory>${project.build.directory}/generated-sources/cluster</generateDirectory>
97 <bindingDirectory>src/main/resources/schema</bindingDirectory>
98 <bindingIncludes>
99 <bindingInclude>jaxb-bindings.xjb</bindingInclude>
100 </bindingIncludes>
101 </configuration>
102 </execution>
ramangrover296c282a12013-04-28 22:52:35 -0700103 </executions>
104 </plugin>
ramangrover29330a5412013-04-29 20:59:17 -0700105 <plugin>
106 <groupId>org.apache.maven.plugins</groupId>
107 <artifactId>maven-jar-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -0700108 <version>2.4</version>
ramangrover29330a5412013-04-29 20:59:17 -0700109 <configuration>
110 <includes>
111 <include>**/*.class</include>
112 </includes>
113 </configuration>
114 <executions>
115 <execution>
116 <goals>
117 <goal>test-jar</goal>
118 </goals>
119 </execution>
120 </executions>
121 </plugin>
vinayakb38b7ca42012-03-05 05:44:15 +0000122 </plugins>
123 </build>
124
125 <dependencies>
126 <dependency>
Raman Grovercbc00342013-04-22 21:16:54 -0700127 <groupId>commons-io</groupId>
128 <artifactId>commons-io</artifactId>
Raman Grovercbc00342013-04-22 21:16:54 -0700129 </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>
vinayakb5ee049d2013-04-06 21:21:29 +0000144 <groupId>edu.uci.ics.hyracks</groupId>
145 <artifactId>hyracks-storage-am-lsm-common</artifactId>
146 </dependency>
ramangrover29330a5412013-04-29 20:59:17 -0700147 <dependency>
ramangrover29f9f78342013-05-23 15:07:39 -0700148 <groupId>edu.uci.ics.hyracks</groupId>
149 <artifactId>hyracks-storage-am-common</artifactId>
150 </dependency>
151 <dependency>
152 <groupId>edu.uci.ics.hyracks</groupId>
153 <artifactId>hyracks-api</artifactId>
154 </dependency>
155 <dependency>
ramangrover29330a5412013-04-29 20:59:17 -0700156 <groupId>edu.uci.ics.asterix</groupId>
157 <artifactId>asterix-test-framework</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700158 <version>0.8.7-SNAPSHOT</version>
ramangrover29330a5412013-04-29 20:59:17 -0700159 <scope>test</scope>
160 </dependency>
161 <dependency>
zheilbron25cb8bf2013-06-04 00:04:04 -0700162 <groupId>edu.uci.ics.hyracks</groupId>
163 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
164 </dependency>
165 <dependency>
166 <groupId>edu.uci.ics.hyracks</groupId>
167 <artifactId>
168 hyracks-storage-am-lsm-invertedindex
169 </artifactId>
170 </dependency>
171 <dependency>
172 <groupId>edu.uci.ics.hyracks</groupId>
173 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
zheilbronba60a382013-06-04 00:48:52 -0700174 </dependency>
175 <dependency>
Madhusudan.C.S117fdf92013-06-02 23:46:44 -0700176 <groupId>com.fasterxml.jackson.core</groupId>
177 <artifactId>jackson-core</artifactId>
178 <version>2.2.0</version>
179 </dependency>
180 <dependency>
181 <groupId>org.codehaus.jackson</groupId>
182 <artifactId>jackson-mapper-asl</artifactId>
183 <version>1.9.12</version>
zheilbron25cb8bf2013-06-04 00:04:04 -0700184 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000185 </dependencies>
186
187</project>
188