blob: 6f215d73961ed7f4d2cb71cba99f43492c9cc8a1 [file] [log] [blame]
Yingyi Bu391f09e2015-10-29 13:49:39 -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 !-->
Michael Blow380b0a22016-08-02 13:05:52 -040019<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">
Michael Blowb4c1fb02016-05-09 15:41:00 -070020 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <artifactId>apache-asterixdb</artifactId>
23 <groupId>org.apache.asterix</groupId>
Ian Maxonf14cb2f2023-03-16 13:29:18 -070024 <version>0.9.8.1-SNAPSHOT</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070025 </parent>
Michael Blowb4c1fb02016-05-09 15:41:00 -070026 <licenses>
27 <license>
28 <name>Apache License, Version 2.0</name>
29 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
30 <distribution>repo</distribution>
31 <comments>A business-friendly OSS license</comments>
32 </license>
33 </licenses>
Michael Blowb4c1fb02016-05-09 15:41:00 -070034 <artifactId>asterix-lang-sqlpp</artifactId>
Michael Blow4cd925c2018-01-20 17:15:38 -050035 <properties>
36 <root.dir>${basedir}/..</root.dir>
37 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070038 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.codehaus.mojo</groupId>
42 <artifactId>javacc-maven-plugin</artifactId>
43 <version>2.6</version>
44 <executions>
45 <execution>
46 <id>javacc</id>
47 <goals>
48 <goal>javacc</goal>
49 </goals>
50 <configuration>
51 <isStatic>false</isStatic>
52 <javaUnicodeEscape>true</javaUnicodeEscape>
53 </configuration>
54 </execution>
Ian Maxon731fa702020-09-25 13:36:24 -070055 <execution>
56 <id>javacc-jjdoc</id>
57 <goals>
58 <goal>jjdoc</goal>
59 </goals>
60 <phase>generate-test-sources</phase>
61 </execution>
Michael Blowb4c1fb02016-05-09 15:41:00 -070062 </executions>
63 </plugin>
64 <plugin>
65 <groupId>org.codehaus.mojo</groupId>
66 <artifactId>build-helper-maven-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070067 <executions>
68 <execution>
69 <id>add-source</id>
70 <phase>generate-sources</phase>
71 <goals>
72 <goal>add-source</goal>
73 </goals>
74 <configuration>
75 <sources>
76 <source>${project.build.directory}/generated-sources/javacc/</source>
77 </sources>
78 </configuration>
79 </execution>
80 </executions>
81 </plugin>
82 </plugins>
83 <pluginManagement>
84 <plugins>
85 <!--This plugin's configuration is used to store Eclipse m2e settings
86 only. It has no influence on the Maven build itself. -->
87 <plugin>
88 <groupId>org.eclipse.m2e</groupId>
89 <artifactId>lifecycle-mapping</artifactId>
90 <version>1.0.0</version>
91 <configuration>
92 <lifecycleMappingMetadata>
93 <pluginExecutions>
94 <pluginExecution>
95 <pluginExecutionFilter>
Abdullah Alamoudid718dc42017-02-02 21:41:48 -080096 <groupId>org.codehaus.mojo</groupId>
97 <artifactId>javacc-maven-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -040098 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -070099 <goals>
100 <goal>jjdoc</goal>
101 <goal>javacc</goal>
102 </goals>
103 </pluginExecutionFilter>
104 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400105 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700106 </action>
107 </pluginExecution>
108 </pluginExecutions>
109 </lifecycleMappingMetadata>
110 </configuration>
111 </plugin>
112 </plugins>
113 </pluginManagement>
114 </build>
Michael Blow7626d162017-12-10 14:26:56 -0500115
Michael Blowb4c1fb02016-05-09 15:41:00 -0700116 <dependencies>
117 <dependency>
Ali Alsuliman363f81f2019-01-17 15:54:28 -0800118 <groupId>org.apache.hyracks</groupId>
119 <artifactId>hyracks-util</artifactId>
120 </dependency>
121 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700122 <groupId>org.apache.asterix</groupId>
123 <artifactId>asterix-lang-common</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400124 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700125 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500126 <dependency>
Ian Maxon38fe9402020-01-29 19:27:40 -0800127 <groupId>org.apache.asterix</groupId>
128 <artifactId>asterix-external-data</artifactId>
129 <version>${project.version}</version>
130 </dependency>
131 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500132 <groupId>org.apache.hyracks</groupId>
133 <artifactId>algebricks-common</artifactId>
134 </dependency>
135 <dependency>
136 <groupId>org.apache.asterix</groupId>
137 <artifactId>asterix-om</artifactId>
138 <version>${project.version}</version>
139 </dependency>
140 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500141 <groupId>org.apache.asterix</groupId>
142 <artifactId>asterix-metadata</artifactId>
143 <version>${project.version}</version>
144 </dependency>
145 <dependency>
146 <groupId>org.apache.asterix</groupId>
147 <artifactId>asterix-common</artifactId>
148 <version>${project.version}</version>
149 </dependency>
150 <dependency>
151 <groupId>org.apache.hyracks</groupId>
Dmitry Lychaginee54cc02018-05-25 19:26:18 -0700152 <artifactId>hyracks-api</artifactId>
153 </dependency>
154 <dependency>
155 <groupId>org.apache.hyracks</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500156 <artifactId>algebricks-core</artifactId>
157 </dependency>
158 <dependency>
Dmitry Lychaginef1719e2017-12-15 08:33:07 -0800159 <groupId>org.apache.commons</groupId>
160 <artifactId>commons-lang3</artifactId>
161 </dependency>
162 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500163 <groupId>junit</groupId>
164 <artifactId>junit</artifactId>
165 <scope>test</scope>
166 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300167 <dependency>
168 <groupId>org.apache.logging.log4j</groupId>
169 <artifactId>log4j-api</artifactId>
170 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700171 </dependencies>
Michael Blow4cd925c2018-01-20 17:15:38 -0500172</project>