Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1 | <!-- |
| 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 Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame] | 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/xsd/maven-4.0.0.xsd"> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
| 22 | <artifactId>apache-asterixdb</artifactId> |
| 23 | <groupId>org.apache.asterix</groupId> |
Ian Maxon | f14cb2f | 2023-03-16 13:29:18 -0700 | [diff] [blame] | 24 | <version>0.9.8.1-SNAPSHOT</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 25 | </parent> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 26 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 34 | <artifactId>asterix-lang-sqlpp</artifactId> |
Michael Blow | 4cd925c | 2018-01-20 17:15:38 -0500 | [diff] [blame] | 35 | <properties> |
| 36 | <root.dir>${basedir}/..</root.dir> |
| 37 | </properties> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 38 | <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 Maxon | 731fa70 | 2020-09-25 13:36:24 -0700 | [diff] [blame] | 55 | <execution> |
| 56 | <id>javacc-jjdoc</id> |
| 57 | <goals> |
| 58 | <goal>jjdoc</goal> |
| 59 | </goals> |
| 60 | <phase>generate-test-sources</phase> |
| 61 | </execution> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 62 | </executions> |
| 63 | </plugin> |
| 64 | <plugin> |
| 65 | <groupId>org.codehaus.mojo</groupId> |
| 66 | <artifactId>build-helper-maven-plugin</artifactId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 67 | <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 Alamoudi | d718dc4 | 2017-02-02 21:41:48 -0800 | [diff] [blame] | 96 | <groupId>org.codehaus.mojo</groupId> |
| 97 | <artifactId>javacc-maven-plugin</artifactId> |
Michael Blow | 09f958c | 2017-08-20 17:02:19 -0400 | [diff] [blame] | 98 | <versionRange>[0.0,)</versionRange> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 99 | <goals> |
| 100 | <goal>jjdoc</goal> |
| 101 | <goal>javacc</goal> |
| 102 | </goals> |
| 103 | </pluginExecutionFilter> |
| 104 | <action> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame] | 105 | <ignore /> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 106 | </action> |
| 107 | </pluginExecution> |
| 108 | </pluginExecutions> |
| 109 | </lifecycleMappingMetadata> |
| 110 | </configuration> |
| 111 | </plugin> |
| 112 | </plugins> |
| 113 | </pluginManagement> |
| 114 | </build> |
Michael Blow | 7626d16 | 2017-12-10 14:26:56 -0500 | [diff] [blame] | 115 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 116 | <dependencies> |
| 117 | <dependency> |
Ali Alsuliman | 363f81f | 2019-01-17 15:54:28 -0800 | [diff] [blame] | 118 | <groupId>org.apache.hyracks</groupId> |
| 119 | <artifactId>hyracks-util</artifactId> |
| 120 | </dependency> |
| 121 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 122 | <groupId>org.apache.asterix</groupId> |
| 123 | <artifactId>asterix-lang-common</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 124 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 125 | </dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 126 | <dependency> |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 127 | <groupId>org.apache.asterix</groupId> |
| 128 | <artifactId>asterix-external-data</artifactId> |
| 129 | <version>${project.version}</version> |
| 130 | </dependency> |
| 131 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 132 | <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 Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 141 | <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 Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 152 | <artifactId>hyracks-api</artifactId> |
| 153 | </dependency> |
| 154 | <dependency> |
| 155 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 156 | <artifactId>algebricks-core</artifactId> |
| 157 | </dependency> |
| 158 | <dependency> |
Dmitry Lychagin | ef1719e | 2017-12-15 08:33:07 -0800 | [diff] [blame] | 159 | <groupId>org.apache.commons</groupId> |
| 160 | <artifactId>commons-lang3</artifactId> |
| 161 | </dependency> |
| 162 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 163 | <groupId>junit</groupId> |
| 164 | <artifactId>junit</artifactId> |
| 165 | <scope>test</scope> |
| 166 | </dependency> |
Murtadha Hubail | af4018d | 2017-12-15 17:56:38 +0300 | [diff] [blame] | 167 | <dependency> |
| 168 | <groupId>org.apache.logging.log4j</groupId> |
| 169 | <artifactId>log4j-api</artifactId> |
| 170 | </dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 171 | </dependencies> |
Michael Blow | 4cd925c | 2018-01-20 17:15:38 -0500 | [diff] [blame] | 172 | </project> |