blob: d5ad95ce5098cd29d61b879d8618976d27542ce6 [file] [log] [blame]
Yingyi Budbd82852016-04-22 00:02: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 !-->
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 Budbd82852016-04-22 00:02:39 -070021 <artifactId>asterix-evaluator-generator-maven-plugin</artifactId>
22 <parent>
Michael Blowb4c1fb02016-05-09 15:41:00 -070023 <groupId>org.apache.asterix</groupId>
24 <artifactId>asterix-maven-plugins</artifactId>
AsterixDB Jenkins478eccb2018-08-31 14:57:31 -070025 <version>0.9.5-SNAPSHOT</version>
Yingyi Budbd82852016-04-22 00:02:39 -070026 </parent>
27
28 <packaging>maven-plugin</packaging>
29 <name>asterix-evaluator-generator-maven-plugin</name>
30
31 <properties>
Michael Blow4cd925c2018-01-20 17:15:38 -050032 <root.dir>${basedir}/../..</root.dir>
Yingyi Budbd82852016-04-22 00:02:39 -070033 </properties>
Dmitry Lychagin274f2962017-07-05 20:31:12 -070034 <build>
35 <plugins>
36 <plugin>
37 <groupId>org.apache.maven.plugins</groupId>
38 <artifactId>maven-dependency-plugin</artifactId>
Dmitry Lychagin274f2962017-07-05 20:31:12 -070039 <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 Budbd82852016-04-22 00:02:39 -070047 <dependencies>
48 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070049 <groupId>org.apache.asterix</groupId>
Dmitry Lychagin274f2962017-07-05 20:31:12 -070050 <artifactId>asterix-common</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070051 <version>${project.version}</version>
Dmitry Lychagin274f2962017-07-05 20:31:12 -070052 </dependency>
53 <dependency>
54 <groupId>org.apache.asterix</groupId>
55 <artifactId>asterix-om</artifactId>
56 <version>${project.version}</version>
Yingyi Budbd82852016-04-22 00:02:39 -070057 </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 Budbd82852016-04-22 00:02:39 -070064 <artifactId>maven-project</artifactId>
Yingyi Budbd82852016-04-22 00:02:39 -070065 </dependency>
66 <dependency>
67 <groupId>org.reflections</groupId>
68 <artifactId>reflections</artifactId>
Yingyi Budbd82852016-04-22 00:02:39 -070069 </dependency>
70 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -050071 <groupId>org.apache.maven</groupId>
72 <artifactId>maven-model</artifactId>
Yingyi Budbd82852016-04-22 00:02:39 -070073 </dependency>
Dmitry Lychagin274f2962017-07-05 20:31:12 -070074 <dependency>
75 <groupId>org.apache.commons</groupId>
76 <artifactId>commons-lang3</artifactId>
Dmitry Lychagin274f2962017-07-05 20:31:12 -070077 </dependency>
78 <dependency>
79 <groupId>org.ow2.asm</groupId>
Michael Blowbc6a6c52018-06-11 12:08:07 -040080 <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 Lychagin274f2962017-07-05 20:31:12 -070087 </dependency>
Yingyi Budbd82852016-04-22 00:02:39 -070088 </dependencies>
89</project>