blob: 70d384beec57f690a9f241aae2744d76838ab5fe [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>
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>
71 <generatePackage>edu.uci.ics.asterix.common.configuration</generatePackage>
72 <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>
105 <generatePackage>edu.uci.ics.asterix.event.schema.cluster</generatePackage>
106 <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>
ramangrover296c282a12013-04-28 22:52:35 -0700113 </executions>
114 </plugin>
ramangrover29330a5412013-04-29 20:59:17 -0700115 <plugin>
116 <groupId>org.apache.maven.plugins</groupId>
117 <artifactId>maven-jar-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -0700118 <version>2.4</version>
ramangrover29330a5412013-04-29 20:59:17 -0700119 <configuration>
120 <includes>
121 <include>**/*.class</include>
122 </includes>
123 </configuration>
124 <executions>
125 <execution>
126 <goals>
127 <goal>test-jar</goal>
128 </goals>
129 </execution>
130 </executions>
131 </plugin>
vinayakb38b7ca42012-03-05 05:44:15 +0000132 </plugins>
133 </build>
134
135 <dependencies>
136 <dependency>
Raman Grovercbc00342013-04-22 21:16:54 -0700137 <groupId>commons-io</groupId>
138 <artifactId>commons-io</artifactId>
Raman Grovercbc00342013-04-22 21:16:54 -0700139 </dependency>
140 <dependency>
141 <groupId>commons-httpclient</groupId>
142 <artifactId>commons-httpclient</artifactId>
143 <version>3.0.1</version>
144 </dependency>
145 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000146 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000147 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000148 </dependency>
149 <dependency>
150 <groupId>edu.uci.ics.hyracks</groupId>
151 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +0000152 </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