ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 1 | <!-- ! 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 Borkar | 9cca81b | 2013-12-11 21:53:45 -0800 | [diff] [blame] | 10 | <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"> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 11 | <modelVersion>4.0.0</modelVersion> |
| 12 | <parent> |
| 13 | <artifactId>asterix</artifactId> |
| 14 | <groupId>edu.uci.ics.asterix</groupId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 15 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 16 | </parent> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 17 | <artifactId>asterix-common</artifactId> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 18 | |
| 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 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 28 | <build> |
| 29 | <plugins> |
| 30 | <plugin> |
| 31 | <groupId>org.apache.maven.plugins</groupId> |
| 32 | <artifactId>maven-compiler-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 33 | <version>2.3.2</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 34 | <configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 35 | <source>1.7</source> |
| 36 | <target>1.7</target> |
| 37 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 38 | </configuration> |
| 39 | </plugin> |
ramangrover29 | 6c282a1 | 2013-04-28 22:52:35 -0700 | [diff] [blame] | 40 | <plugin> |
| 41 | <groupId>org.jvnet.jaxb2.maven2</groupId> |
| 42 | <artifactId>maven-jaxb2-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 43 | <version>0.9.0</version> |
ramangrover29 | 6c282a1 | 2013-04-28 22:52:35 -0700 | [diff] [blame] | 44 | <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> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 79 | <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> |
ramangrover29 | 6c282a1 | 2013-04-28 22:52:35 -0700 | [diff] [blame] | 113 | </executions> |
| 114 | </plugin> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 115 | <plugin> |
| 116 | <groupId>org.apache.maven.plugins</groupId> |
| 117 | <artifactId>maven-jar-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 118 | <version>2.4</version> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 119 | <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> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 132 | </plugins> |
| 133 | </build> |
| 134 | |
| 135 | <dependencies> |
| 136 | <dependency> |
Raman Grover | cbc0034 | 2013-04-22 21:16:54 -0700 | [diff] [blame] | 137 | <groupId>commons-io</groupId> |
| 138 | <artifactId>commons-io</artifactId> |
Raman Grover | cbc0034 | 2013-04-22 21:16:54 -0700 | [diff] [blame] | 139 | </dependency> |
| 140 | <dependency> |
| 141 | <groupId>commons-httpclient</groupId> |
| 142 | <artifactId>commons-httpclient</artifactId> |
| 143 | <version>3.0.1</version> |
| 144 | </dependency> |
| 145 | <dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 146 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 147 | <artifactId>algebricks-compiler</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 148 | </dependency> |
| 149 | <dependency> |
| 150 | <groupId>edu.uci.ics.hyracks</groupId> |
| 151 | <artifactId>hyracks-dataflow-std</artifactId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 152 | </dependency> |
| 153 | <dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 154 | <groupId>edu.uci.ics.hyracks</groupId> |
| 155 | <artifactId>hyracks-storage-am-lsm-common</artifactId> |
| 156 | </dependency> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 157 | <dependency> |
ramangrover29 | f9f7834 | 2013-05-23 15:07:39 -0700 | [diff] [blame] | 158 | <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> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 166 | <groupId>edu.uci.ics.asterix</groupId> |
| 167 | <artifactId>asterix-test-framework</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 168 | <version>0.8.7-SNAPSHOT</version> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 169 | <scope>test</scope> |
| 170 | </dependency> |
| 171 | <dependency> |
zheilbron | 25cb8bf | 2013-06-04 00:04:04 -0700 | [diff] [blame] | 172 | <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> |
zheilbron | ba60a38 | 2013-06-04 00:48:52 -0700 | [diff] [blame] | 184 | </dependency> |
| 185 | <dependency> |
Madhusudan.C.S | 117fdf9 | 2013-06-02 23:46:44 -0700 | [diff] [blame] | 186 | <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> |
zheilbron | 25cb8bf | 2013-06-04 00:04:04 -0700 | [diff] [blame] | 194 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 195 | </dependencies> |
| 196 | |
| 197 | </project> |
| 198 | |