blob: 7bc2b8ced11c2502eccfcf8c451a6ee8329ecf7f [file] [log] [blame]
Yingyi Bu391f09e2015-10-29 13:49:39 -07001<!-- ! Licensed to the Apache Software Foundation (ASF) under one ! or more
2 contributor license agreements. See the NOTICE file ! distributed with this
3 work for additional information ! regarding copyright ownership. The ASF
4 licenses this file ! to you under the Apache License, Version 2.0 (the !
5 "License"); you may not use this file except in compliance ! with the License.
6 You may obtain a copy of the License at ! ! http://www.apache.org/licenses/LICENSE-2.0
7 ! ! Unless required by applicable law or agreed to in writing, ! software
8 distributed under the License is distributed on an ! "AS IS" BASIS, WITHOUT
9 WARRANTIES OR CONDITIONS OF ANY ! KIND, either express or implied. See the
10 License for the ! specific language governing permissions and limitations
11 ! under the License. ! -->
Abdullah Alamoudi5dc958c2016-01-30 11:15:23 +030012<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">
13 <modelVersion>4.0.0</modelVersion>
14 <parent>
Ian Maxon3da9d062016-03-16 17:05:31 -070015 <artifactId>apache-asterixdb</artifactId>
Abdullah Alamoudi5dc958c2016-01-30 11:15:23 +030016 <groupId>org.apache.asterix</groupId>
Ian Maxon3da9d062016-03-16 17:05:31 -070017 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi5dc958c2016-01-30 11:15:23 +030018 </parent>
19 <artifactId>asterix-algebra</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000020
Ian Maxon3da9d062016-03-16 17:05:31 -070021 <properties>
22 <appendedResourcesDirectory>${basedir}/../src/main/appended-resources</appendedResourcesDirectory>
23 </properties>
Ian4a816dc2014-11-26 15:46:32 -080024
Abdullah Alamoudi5dc958c2016-01-30 11:15:23 +030025 <licenses>
26 <license>
27 <name>Apache License, Version 2.0</name>
28 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
29 <distribution>repo</distribution>
30 <comments>A business-friendly OSS license</comments>
31 </license>
32 </licenses>
33 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.codehaus.mojo</groupId>
37 <artifactId>javacc-maven-plugin</artifactId>
38 <version>2.6</version>
39 <executions>
40 <execution>
41 <id>javacc</id>
42 <goals>
43 <goal>javacc</goal>
44 </goals>
45 <configuration>
46 <isStatic>false</isStatic>
47 </configuration>
48 </execution>
49 </executions>
50 </plugin>
51 </plugins>
52 <pluginManagement>
53 <plugins>
54 <plugin>
55 <groupId>org.eclipse.m2e</groupId>
56 <artifactId>lifecycle-mapping</artifactId>
57 <version>1.0.0</version>
58 <configuration>
59 <lifecycleMappingMetadata>
60 <pluginExecutions>
61 <pluginExecution>
62 <pluginExecutionFilter>
63 <groupId> org.codehaus.mojo
64 </groupId>
65 <artifactId> javacc-maven-plugin
66 </artifactId>
67 <versionRange> [2.6,)
68 </versionRange>
69 <goals>
70 <goal>javacc</goal>
71 </goals>
72 </pluginExecutionFilter>
73 <action>
74 <ignore />
75 </action>
76 </pluginExecution>
77 </pluginExecutions>
78 </lifecycleMappingMetadata>
79 </configuration>
80 </plugin>
81 </plugins>
82 </pluginManagement>
83 </build>
84 <dependencies>
85 <dependency>
86 <groupId>org.apache.asterix</groupId>
87 <artifactId>asterix-runtime</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -070088 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi5dc958c2016-01-30 11:15:23 +030089 <scope>compile</scope>
90 </dependency>
91 <dependency>
92 <groupId>org.apache.asterix</groupId>
93 <artifactId>asterix-lang-common</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -070094 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi5dc958c2016-01-30 11:15:23 +030095 </dependency>
96 <dependency>
97 <groupId>org.apache.asterix</groupId>
98 <artifactId>asterix-lang-aql</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -070099 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi5dc958c2016-01-30 11:15:23 +0300100 <scope>compile</scope>
101 </dependency>
102 <dependency>
103 <groupId>org.apache.asterix</groupId>
104 <artifactId>asterix-lang-sqlpp</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -0700105 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi5dc958c2016-01-30 11:15:23 +0300106 <scope>compile</scope>
107 </dependency>
108 <dependency>
109 <groupId>org.apache.asterix</groupId>
110 <artifactId>asterix-metadata</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -0700111 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi5dc958c2016-01-30 11:15:23 +0300112 <scope>compile</scope>
113 </dependency>
114 <dependency>
115 <groupId>org.apache.asterix</groupId>
116 <artifactId>asterix-external-data</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -0700117 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi5dc958c2016-01-30 11:15:23 +0300118 </dependency>
119 <dependency>
120 <groupId>org.apache.asterix</groupId>
121 <artifactId>asterix-transactions</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -0700122 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi5dc958c2016-01-30 11:15:23 +0300123 <scope>compile</scope>
124 </dependency>
125 <dependency>
126 <groupId>org.apache.hyracks</groupId>
127 <artifactId>algebricks-compiler</artifactId>
128 </dependency>
129 <dependency>
130 <groupId>org.json</groupId>
131 <artifactId>json</artifactId>
132 </dependency>
133 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +0000134</project>