Yingyi Bu | dbd8285 | 2016-04-22 00:02: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 | !--> |
| 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> |
Yingyi Bu | dbd8285 | 2016-04-22 00:02:39 -0700 | [diff] [blame] | 21 | <artifactId>asterix-evaluator-generator-maven-plugin</artifactId> |
| 22 | <parent> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 23 | <groupId>org.apache.asterix</groupId> |
| 24 | <artifactId>asterix-maven-plugins</artifactId> |
AsterixDB Jenkins | 478eccb | 2018-08-31 14:57:31 -0700 | [diff] [blame] | 25 | <version>0.9.5-SNAPSHOT</version> |
Yingyi Bu | dbd8285 | 2016-04-22 00:02:39 -0700 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <packaging>maven-plugin</packaging> |
| 29 | <name>asterix-evaluator-generator-maven-plugin</name> |
| 30 | |
| 31 | <properties> |
Michael Blow | 4cd925c | 2018-01-20 17:15:38 -0500 | [diff] [blame] | 32 | <root.dir>${basedir}/../..</root.dir> |
Yingyi Bu | dbd8285 | 2016-04-22 00:02:39 -0700 | [diff] [blame] | 33 | </properties> |
Dmitry Lychagin | 274f296 | 2017-07-05 20:31:12 -0700 | [diff] [blame] | 34 | <build> |
| 35 | <plugins> |
| 36 | <plugin> |
| 37 | <groupId>org.apache.maven.plugins</groupId> |
| 38 | <artifactId>maven-dependency-plugin</artifactId> |
Dmitry Lychagin | 274f296 | 2017-07-05 20:31:12 -0700 | [diff] [blame] | 39 | <configuration> |
| 40 | <ignoredUnusedDeclaredDependencies combine.children="append"> |
| 41 | <ignoredUnusedDeclaredDependency>org.apache.asterix:asterix-om:*</ignoredUnusedDeclaredDependency> |
| 42 | </ignoredUnusedDeclaredDependencies> |
| 43 | </configuration> |
| 44 | </plugin> |
| 45 | </plugins> |
| 46 | </build> |
Yingyi Bu | dbd8285 | 2016-04-22 00:02:39 -0700 | [diff] [blame] | 47 | <dependencies> |
| 48 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 49 | <groupId>org.apache.asterix</groupId> |
Dmitry Lychagin | 274f296 | 2017-07-05 20:31:12 -0700 | [diff] [blame] | 50 | <artifactId>asterix-common</artifactId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 51 | <version>${project.version}</version> |
Dmitry Lychagin | 274f296 | 2017-07-05 20:31:12 -0700 | [diff] [blame] | 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.apache.asterix</groupId> |
| 55 | <artifactId>asterix-om</artifactId> |
| 56 | <version>${project.version}</version> |
Yingyi Bu | dbd8285 | 2016-04-22 00:02:39 -0700 | [diff] [blame] | 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.apache.maven</groupId> |
| 60 | <artifactId>maven-plugin-api</artifactId> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.apache.maven</groupId> |
Yingyi Bu | dbd8285 | 2016-04-22 00:02:39 -0700 | [diff] [blame] | 64 | <artifactId>maven-project</artifactId> |
Yingyi Bu | dbd8285 | 2016-04-22 00:02:39 -0700 | [diff] [blame] | 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.reflections</groupId> |
| 68 | <artifactId>reflections</artifactId> |
Yingyi Bu | dbd8285 | 2016-04-22 00:02:39 -0700 | [diff] [blame] | 69 | </dependency> |
| 70 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 71 | <groupId>org.apache.maven</groupId> |
| 72 | <artifactId>maven-model</artifactId> |
Yingyi Bu | dbd8285 | 2016-04-22 00:02:39 -0700 | [diff] [blame] | 73 | </dependency> |
Dmitry Lychagin | 274f296 | 2017-07-05 20:31:12 -0700 | [diff] [blame] | 74 | <dependency> |
| 75 | <groupId>org.apache.commons</groupId> |
| 76 | <artifactId>commons-lang3</artifactId> |
Dmitry Lychagin | 274f296 | 2017-07-05 20:31:12 -0700 | [diff] [blame] | 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.ow2.asm</groupId> |
Michael Blow | bc6a6c5 | 2018-06-11 12:08:07 -0400 | [diff] [blame] | 80 | <artifactId>asm</artifactId> |
| 81 | <version>6.2</version> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.ow2.asm</groupId> |
| 85 | <artifactId>asm-tree</artifactId> |
| 86 | <version>6.2</version> |
Dmitry Lychagin | 274f296 | 2017-07-05 20:31:12 -0700 | [diff] [blame] | 87 | </dependency> |
Yingyi Bu | dbd8285 | 2016-04-22 00:02:39 -0700 | [diff] [blame] | 88 | </dependencies> |
| 89 | </project> |