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> |
Vinayak Borkar | 229b80c | 2013-12-11 21:53:55 -0800 | [diff] [blame] | 15 | <version>0.8.2-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> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 18 | <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> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 25 | <source>1.7</source> |
| 26 | <target>1.7</target> |
| 27 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 28 | </configuration> |
| 29 | </plugin> |
ramangrover29 | 6c282a1 | 2013-04-28 22:52:35 -0700 | [diff] [blame] | 30 | <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> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 68 | <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> |
ramangrover29 | 6c282a1 | 2013-04-28 22:52:35 -0700 | [diff] [blame] | 102 | </executions> |
| 103 | </plugin> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 104 | <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> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 121 | </plugins> |
| 122 | </build> |
| 123 | |
| 124 | <dependencies> |
| 125 | <dependency> |
Raman Grover | cbc0034 | 2013-04-22 21:16:54 -0700 | [diff] [blame] | 126 | <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> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 136 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 137 | <artifactId>algebricks-compiler</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 138 | </dependency> |
| 139 | <dependency> |
| 140 | <groupId>edu.uci.ics.hyracks</groupId> |
| 141 | <artifactId>hyracks-dataflow-std</artifactId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 142 | </dependency> |
| 143 | <dependency> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 144 | <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> |
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> |
Vinayak Borkar | 229b80c | 2013-12-11 21:53:55 -0800 | [diff] [blame] | 168 | <version>0.8.2-SNAPSHOT</version> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 169 | <scope>test</scope> |
| 170 | </dependency> |
| 171 | <dependency> |
| 172 | <groupId>junit</groupId> |
| 173 | <artifactId>junit</artifactId> |
| 174 | <version>4.8.1</version> |
| 175 | <scope>test</scope> |
| 176 | </dependency> |
zheilbron | 25cb8bf | 2013-06-04 00:04:04 -0700 | [diff] [blame] | 177 | <dependency> |
| 178 | <groupId>edu.uci.ics.hyracks</groupId> |
| 179 | <artifactId>hyracks-storage-am-lsm-btree</artifactId> |
| 180 | </dependency> |
| 181 | <dependency> |
| 182 | <groupId>edu.uci.ics.hyracks</groupId> |
| 183 | <artifactId> |
| 184 | hyracks-storage-am-lsm-invertedindex |
| 185 | </artifactId> |
| 186 | </dependency> |
| 187 | <dependency> |
| 188 | <groupId>edu.uci.ics.hyracks</groupId> |
| 189 | <artifactId>hyracks-storage-am-lsm-rtree</artifactId> |
zheilbron | ba60a38 | 2013-06-04 00:48:52 -0700 | [diff] [blame] | 190 | </dependency> |
| 191 | <dependency> |
Madhusudan.C.S | 117fdf9 | 2013-06-02 23:46:44 -0700 | [diff] [blame] | 192 | <groupId>com.fasterxml.jackson.core</groupId> |
| 193 | <artifactId>jackson-core</artifactId> |
| 194 | <version>2.2.0</version> |
| 195 | </dependency> |
| 196 | <dependency> |
| 197 | <groupId>org.codehaus.jackson</groupId> |
| 198 | <artifactId>jackson-mapper-asl</artifactId> |
| 199 | <version>1.9.12</version> |
zheilbron | 25cb8bf | 2013-06-04 00:04:04 -0700 | [diff] [blame] | 200 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 201 | </dependencies> |
| 202 | |
| 203 | </project> |
| 204 | |