blob: 6b5c84502ebb15a49766e69c4d5bfb049a751271 [file] [log] [blame]
Ahmed Eldawy8cc88252018-03-23 18:19:17 -07001<!--
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 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
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.
18 !-->
19<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">
20 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <artifactId>apache-asterixdb</artifactId>
23 <groupId>org.apache.asterix</groupId>
Ian Maxon44a75232018-10-05 12:38:11 -070024 <version>0.9.5-SNAPSHOT</version>
Ahmed Eldawy8cc88252018-03-23 18:19:17 -070025 </parent>
26 <artifactId>asterix-geo</artifactId>
27
28 <licenses>
29 <license>
30 <name>Apache License, Version 2.0</name>
31 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
32 <distribution>repo</distribution>
33 <comments>A business-friendly OSS license</comments>
34 </license>
35 </licenses>
36
37 <properties>
38 <root.dir>${basedir}/..</root.dir>
39 </properties>
40
41 <build>
42 <plugins>
43 <plugin>
Ahmed Eldawy8cc88252018-03-23 18:19:17 -070044 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-jar-plugin</artifactId>
46 <executions>
47 <execution>
48 <goals>
49 <goal>test-jar</goal>
50 </goals>
51 <phase>test-compile</phase>
52 </execution>
53 </executions>
54 </plugin>
55 <plugin>
56 <groupId>org.apache.rat</groupId>
57 <artifactId>apache-rat-plugin</artifactId>
58 <executions>
59 <execution>
60 <phase>validate</phase>
61 <goals>
62 <goal>check</goal>
63 </goals>
64 </execution>
65 </executions>
66 <configuration>
67 <excludes combine.children="append">
68 <exclude>data/**</exclude>
69 </excludes>
70 </configuration>
71 </plugin>
72 </plugins>
73 </build>
74
75 <dependencies>
76 <dependency>
77 <groupId>org.apache.hyracks</groupId>
78 <artifactId>algebricks-common</artifactId>
79 </dependency>
80 <dependency>
81 <groupId>org.apache.commons</groupId>
82 <artifactId>commons-lang3</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>org.apache.hyracks</groupId>
86 <artifactId>hyracks-data-std</artifactId>
87 </dependency>
88 <dependency>
89 <groupId>org.apache.hyracks</groupId>
90 <artifactId>hyracks-util</artifactId>
91 </dependency>
92 <dependency>
93 <groupId>org.apache.hyracks</groupId>
94 <artifactId>algebricks-core</artifactId>
95 </dependency>
96 <dependency>
97 <groupId>org.apache.hyracks</groupId>
98 <artifactId>hyracks-api</artifactId>
99 </dependency>
100 <dependency>
101 <groupId>org.apache.hyracks</groupId>
102 <artifactId>algebricks-runtime</artifactId>
103 </dependency>
104 <dependency>
105 <groupId>org.apache.asterix</groupId>
106 <artifactId>asterix-common</artifactId>
107 <version>${project.version}</version>
108 </dependency>
109 <dependency>
110 <groupId>org.apache.hyracks</groupId>
111 <artifactId>hyracks-dataflow-common</artifactId>
112 </dependency>
113 <dependency>
114 <groupId>org.apache.asterix</groupId>
115 <artifactId>asterix-om</artifactId>
116 <version>${project.version}</version>
117 </dependency>
118 <dependency>
119 <groupId>org.apache.asterix</groupId>
120 <artifactId>asterix-runtime</artifactId>
121 <version>${project.version}</version>
122 </dependency>
123 <dependency>
124 <groupId>com.esri.geometry</groupId>
125 <artifactId>esri-geometry-api</artifactId>
Ahmed Eldawy8cc88252018-03-23 18:19:17 -0700126 </dependency>
127 </dependencies>
128
129</project>