blob: 22f494b92edc5e23e28b12b7951d4d15facaa56a [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>
15 <artifactId>asterix</artifactId>
16 <groupId>org.apache.asterix</groupId>
17 <version>0.8.8-SNAPSHOT</version>
18 </parent>
19 <artifactId>asterix-algebra</artifactId>
20 <licenses>
21 <license>
22 <name>Apache License, Version 2.0</name>
23 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
24 <distribution>repo</distribution>
25 <comments>A business-friendly OSS license</comments>
26 </license>
27 </licenses>
28 <build>
29 <plugins>
30 <plugin>
31 <groupId>org.codehaus.mojo</groupId>
32 <artifactId>javacc-maven-plugin</artifactId>
33 <version>2.6</version>
34 <executions>
35 <execution>
36 <id>javacc</id>
37 <goals>
38 <goal>javacc</goal>
39 </goals>
40 <configuration>
41 <isStatic>false</isStatic>
42 </configuration>
43 </execution>
44 </executions>
45 </plugin>
46 </plugins>
47 <pluginManagement>
48 <plugins>
49 <plugin>
50 <groupId>org.eclipse.m2e</groupId>
51 <artifactId>lifecycle-mapping</artifactId>
52 <version>1.0.0</version>
53 <configuration>
54 <lifecycleMappingMetadata>
55 <pluginExecutions>
56 <pluginExecution>
57 <pluginExecutionFilter>
58 <groupId> org.codehaus.mojo
59 </groupId>
60 <artifactId> javacc-maven-plugin
61 </artifactId>
62 <versionRange> [2.6,)
63 </versionRange>
64 <goals>
65 <goal>javacc</goal>
66 </goals>
67 </pluginExecutionFilter>
68 <action>
69 <ignore />
70 </action>
71 </pluginExecution>
72 </pluginExecutions>
73 </lifecycleMappingMetadata>
74 </configuration>
75 </plugin>
76 </plugins>
77 </pluginManagement>
78 </build>
79 <dependencies>
80 <dependency>
81 <groupId>org.apache.asterix</groupId>
82 <artifactId>asterix-runtime</artifactId>
83 <version>0.8.8-SNAPSHOT</version>
84 <scope>compile</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.apache.asterix</groupId>
88 <artifactId>asterix-lang-common</artifactId>
89 <version>0.8.8-SNAPSHOT</version>
90 </dependency>
91 <dependency>
92 <groupId>org.apache.asterix</groupId>
93 <artifactId>asterix-lang-aql</artifactId>
94 <version>0.8.8-SNAPSHOT</version>
95 <scope>compile</scope>
96 </dependency>
97 <dependency>
98 <groupId>org.apache.asterix</groupId>
99 <artifactId>asterix-lang-sqlpp</artifactId>
100 <version>0.8.8-SNAPSHOT</version>
101 <scope>compile</scope>
102 </dependency>
103 <dependency>
104 <groupId>org.apache.asterix</groupId>
105 <artifactId>asterix-metadata</artifactId>
106 <version>0.8.8-SNAPSHOT</version>
107 <scope>compile</scope>
108 </dependency>
109 <dependency>
110 <groupId>org.apache.asterix</groupId>
111 <artifactId>asterix-external-data</artifactId>
112 <version>0.8.8-SNAPSHOT</version>
113 </dependency>
114 <dependency>
115 <groupId>org.apache.asterix</groupId>
116 <artifactId>asterix-transactions</artifactId>
117 <version>0.8.8-SNAPSHOT</version>
118 <scope>compile</scope>
119 </dependency>
120 <dependency>
121 <groupId>org.apache.hyracks</groupId>
122 <artifactId>algebricks-compiler</artifactId>
123 </dependency>
124 <dependency>
125 <groupId>org.json</groupId>
126 <artifactId>json</artifactId>
127 </dependency>
128 </dependencies>
129</project>