Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | <!-- |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 2 | ! Licensed to the Apache Software Foundation (ASF) under one |
| 3 | ! or more contributor license agreements. See the NOTICE file |
| 4 | ! distributed with this work for additional information |
| 5 | ! regarding copyright ownership. The ASF licenses this file |
| 6 | ! to you under the Apache License, Version 2.0 (the |
| 7 | ! "License"); you may not use this file except in compliance |
| 8 | ! with the License. You may obtain a copy of the License at |
| 9 | ! |
Ian Maxon | bb5dc4c | 2016-02-02 18:16:30 -0800 | [diff] [blame^] | 10 | ! http://www.apache.org/licenses/LICENSE-2.0 |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 11 | ! |
| 12 | ! Unless required by applicable law or agreed to in writing, |
| 13 | ! software distributed under the License is distributed on an |
| 14 | ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | ! KIND, either express or implied. See the License for the |
| 16 | ! specific language governing permissions and limitations |
| 17 | ! under the License. |
Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 18 | !--> |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 19 | |
vinayakb | 4fa2343 | 2013-04-06 19:21:13 +0000 | [diff] [blame] | 20 | <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/maven-v4_0_0.xsd"> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 21 | <modelVersion>4.0.0</modelVersion> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 22 | <groupId>org.apache.hyracks.examples</groupId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 23 | <artifactId>hyracks-integration-tests</artifactId> |
| 24 | <name>hyracks-integration-tests</name> |
| 25 | <parent> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 26 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 27 | <artifactId>hyracks-examples</artifactId> |
Ian Maxon | 776894a | 2016-02-02 10:38:56 -0800 | [diff] [blame] | 28 | <version>0.2.17-SNAPSHOT</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 29 | </parent> |
| 30 | <build> |
| 31 | <plugins> |
| 32 | <plugin> |
| 33 | <groupId>org.apache.maven.plugins</groupId> |
| 34 | <artifactId>maven-compiler-plugin</artifactId> |
| 35 | <version>2.0.2</version> |
| 36 | <configuration> |
| 37 | <source>1.7</source> |
| 38 | <target>1.7</target> |
| 39 | </configuration> |
| 40 | </plugin> |
Ian Maxon | bb5dc4c | 2016-02-02 18:16:30 -0800 | [diff] [blame^] | 41 | <plugin> |
| 42 | <groupId>org.apache.maven.plugins</groupId> |
| 43 | <artifactId>maven-deploy-plugin</artifactId> |
| 44 | <configuration> |
| 45 | <skip>true</skip> |
| 46 | </configuration> |
| 47 | </plugin> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 48 | </plugins> |
| 49 | </build> |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 50 | <properties> |
| 51 | <root.dir>${basedir}/../../..</root.dir> |
| 52 | </properties> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 53 | <dependencies> |
| 54 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 55 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 56 | <artifactId>hyracks-dataflow-std</artifactId> |
Ian Maxon | 776894a | 2016-02-02 10:38:56 -0800 | [diff] [blame] | 57 | <version>0.2.17-SNAPSHOT</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 58 | <type>jar</type> |
| 59 | <scope>compile</scope> |
| 60 | </dependency> |
| 61 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 62 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 63 | <artifactId>hyracks-control-cc</artifactId> |
Ian Maxon | 776894a | 2016-02-02 10:38:56 -0800 | [diff] [blame] | 64 | <version>0.2.17-SNAPSHOT</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 65 | <type>jar</type> |
| 66 | <scope>compile</scope> |
| 67 | </dependency> |
| 68 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 69 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 70 | <artifactId>hyracks-control-nc</artifactId> |
Ian Maxon | 776894a | 2016-02-02 10:38:56 -0800 | [diff] [blame] | 71 | <version>0.2.17-SNAPSHOT</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 72 | <type>jar</type> |
| 73 | <scope>compile</scope> |
| 74 | </dependency> |
| 75 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 76 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 77 | <artifactId>hyracks-storage-am-btree</artifactId> |
Ian Maxon | 776894a | 2016-02-02 10:38:56 -0800 | [diff] [blame] | 78 | <version>0.2.17-SNAPSHOT</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 79 | <type>jar</type> |
| 80 | <scope>compile</scope> |
| 81 | </dependency> |
| 82 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 83 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 84 | <artifactId>hyracks-storage-am-rtree</artifactId> |
Ian Maxon | 776894a | 2016-02-02 10:38:56 -0800 | [diff] [blame] | 85 | <version>0.2.17-SNAPSHOT</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 86 | <type>jar</type> |
| 87 | <scope>compile</scope> |
| 88 | </dependency> |
| 89 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 90 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 91 | <artifactId>hyracks-storage-am-lsm-btree</artifactId> |
Ian Maxon | 776894a | 2016-02-02 10:38:56 -0800 | [diff] [blame] | 92 | <version>0.2.17-SNAPSHOT</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 93 | <type>jar</type> |
| 94 | <scope>compile</scope> |
| 95 | </dependency> |
| 96 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 97 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 98 | <artifactId>hyracks-storage-am-lsm-rtree</artifactId> |
Ian Maxon | 776894a | 2016-02-02 10:38:56 -0800 | [diff] [blame] | 99 | <version>0.2.17-SNAPSHOT</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 100 | <type>jar</type> |
| 101 | <scope>compile</scope> |
| 102 | </dependency> |
| 103 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 104 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 105 | <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId> |
Ian Maxon | 776894a | 2016-02-02 10:38:56 -0800 | [diff] [blame] | 106 | <version>0.2.17-SNAPSHOT</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 107 | <type>jar</type> |
| 108 | <scope>compile</scope> |
| 109 | </dependency> |
| 110 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 111 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 112 | <artifactId>hyracks-test-support</artifactId> |
Ian Maxon | 776894a | 2016-02-02 10:38:56 -0800 | [diff] [blame] | 113 | <version>0.2.17-SNAPSHOT</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 114 | <type>jar</type> |
| 115 | <scope>test</scope> |
| 116 | </dependency> |
| 117 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 118 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 119 | <artifactId>hyracks-data-std</artifactId> |
Ian Maxon | 776894a | 2016-02-02 10:38:56 -0800 | [diff] [blame] | 120 | <version>0.2.17-SNAPSHOT</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 121 | </dependency> |
Ian Maxon | bb5dc4c | 2016-02-02 18:16:30 -0800 | [diff] [blame^] | 122 | <dependency> |
| 123 | <groupId>org.apache.hyracks</groupId> |
| 124 | <artifactId>hyracks-client</artifactId> |
| 125 | <version>0.2.17-SNAPSHOT</version> |
| 126 | <type>jar</type> |
| 127 | <scope>compile</scope> |
| 128 | </dependency> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 129 | </dependencies> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 130 | </project> |