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 | ! |
Michael Blow | d6cf641 | 2016-06-30 02:44:35 -0400 | [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"> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <groupId>org.apache.hyracks.examples</groupId> |
| 23 | <artifactId>hyracks-integration-tests</artifactId> |
| 24 | <name>hyracks-integration-tests</name> |
| 25 | <parent> |
| 26 | <groupId>org.apache.hyracks</groupId> |
| 27 | <artifactId>hyracks-examples</artifactId> |
| 28 | <version>0.2.18-SNAPSHOT</version> |
| 29 | </parent> |
Ian Maxon | 5ae0df8 | 2015-10-14 10:45:19 -0700 | [diff] [blame] | 30 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 31 | <build> |
| 32 | <plugins> |
| 33 | <plugin> |
| 34 | <groupId>org.apache.maven.plugins</groupId> |
| 35 | <artifactId>maven-deploy-plugin</artifactId> |
| 36 | <configuration> |
| 37 | <skip>true</skip> |
| 38 | </configuration> |
| 39 | </plugin> |
| 40 | </plugins> |
| 41 | </build> |
| 42 | <properties> |
| 43 | <root.dir>${basedir}/../../..</root.dir> |
| 44 | </properties> |
| 45 | <dependencies> |
| 46 | <dependency> |
| 47 | <groupId>org.apache.hyracks</groupId> |
| 48 | <artifactId>hyracks-dataflow-std</artifactId> |
| 49 | <version>0.2.18-SNAPSHOT</version> |
| 50 | <type>jar</type> |
| 51 | <scope>compile</scope> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.apache.hyracks</groupId> |
| 55 | <artifactId>hyracks-control-cc</artifactId> |
| 56 | <version>0.2.18-SNAPSHOT</version> |
| 57 | <type>jar</type> |
| 58 | <scope>compile</scope> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.apache.hyracks</groupId> |
| 62 | <artifactId>hyracks-control-nc</artifactId> |
| 63 | <version>0.2.18-SNAPSHOT</version> |
| 64 | <type>jar</type> |
| 65 | <scope>compile</scope> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.apache.hyracks</groupId> |
| 69 | <artifactId>hyracks-storage-am-btree</artifactId> |
| 70 | <version>0.2.18-SNAPSHOT</version> |
| 71 | <type>jar</type> |
| 72 | <scope>compile</scope> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.apache.hyracks</groupId> |
| 76 | <artifactId>hyracks-storage-am-rtree</artifactId> |
| 77 | <version>0.2.18-SNAPSHOT</version> |
| 78 | <type>jar</type> |
| 79 | <scope>compile</scope> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>org.apache.hyracks</groupId> |
| 83 | <artifactId>hyracks-storage-am-lsm-btree</artifactId> |
| 84 | <version>0.2.18-SNAPSHOT</version> |
| 85 | <type>jar</type> |
| 86 | <scope>compile</scope> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.apache.hyracks</groupId> |
| 90 | <artifactId>hyracks-storage-am-lsm-rtree</artifactId> |
| 91 | <version>0.2.18-SNAPSHOT</version> |
| 92 | <type>jar</type> |
| 93 | <scope>compile</scope> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>org.apache.hyracks</groupId> |
| 97 | <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId> |
| 98 | <version>0.2.18-SNAPSHOT</version> |
| 99 | <type>jar</type> |
| 100 | <scope>compile</scope> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>org.apache.hyracks</groupId> |
| 104 | <artifactId>hyracks-test-support</artifactId> |
| 105 | <version>0.2.18-SNAPSHOT</version> |
| 106 | <type>jar</type> |
| 107 | <scope>test</scope> |
| 108 | </dependency> |
| 109 | <dependency> |
| 110 | <groupId>org.apache.hyracks</groupId> |
| 111 | <artifactId>hyracks-data-std</artifactId> |
| 112 | <version>0.2.18-SNAPSHOT</version> |
| 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>org.apache.hyracks</groupId> |
| 116 | <artifactId>hyracks-client</artifactId> |
| 117 | <version>0.2.18-SNAPSHOT</version> |
| 118 | <type>jar</type> |
| 119 | <scope>compile</scope> |
| 120 | </dependency> |
| 121 | <dependency> |
| 122 | <groupId>com.e-movimento.tinytools</groupId> |
| 123 | <artifactId>privilegedaccessor</artifactId> |
| 124 | <version>1.2.2</version> |
| 125 | <scope>test</scope> |
| 126 | </dependency> |
| 127 | </dependencies> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 128 | </project> |