blob: ed8108998d82d1850e2e8717f488c71514aed82d [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001<!--
Ian Maxon928bbd12015-09-14 17:12:48 -07002 ! 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.
Till Westmannea8ab392013-06-05 15:17:08 -070018 !-->
Ian Maxond2e1e892015-10-05 12:46:26 -070019<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">
Eldon Carmand2d78ad2015-05-07 16:23:41 -070020 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <artifactId>asterix</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070023 <groupId>org.apache.asterix</groupId>
Ian Maxon4e6a9232015-10-05 12:46:37 -070024 <version>0.8.8-SNAPSHOT</version>
Eldon Carmand2d78ad2015-05-07 16:23:41 -070025 </parent>
Ian4a816dc2014-11-26 15:46:32 -080026
Eldon Carmand2d78ad2015-05-07 16:23:41 -070027 <licenses>
28 <license>
29 <name>Apache License, Version 2.0</name>
30 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
31 <distribution>repo</distribution>
32 <comments>A business-friendly OSS license</comments>
33 </license>
34 </licenses>
Ian4a816dc2014-11-26 15:46:32 -080035
Eldon Carmand2d78ad2015-05-07 16:23:41 -070036 <artifactId>asterix-aql</artifactId>
37 <build>
38 <plugins>
39 <plugin>
Eldon Carmand2d78ad2015-05-07 16:23:41 -070040 <groupId>org.codehaus.mojo</groupId>
41 <artifactId>javacc-maven-plugin</artifactId>
42 <version>2.6</version>
43 <executions>
44 <execution>
45 <id>javacc</id>
46 <goals>
47 <goal>javacc</goal>
48 </goals>
49 <configuration>
50 <isStatic>false</isStatic>
51 <javaUnicodeEscape>true</javaUnicodeEscape>
52 </configuration>
53 </execution>
54 <execution>
55 <id>javacc-jjdoc</id>
56 <goals>
57 <goal>jjdoc</goal>
58 </goals>
59 <phase>process-sources</phase>
60 </execution>
61 </executions>
62 </plugin>
JArod2c5e06a2013-05-18 16:40:22 -070063 <plugin>
64 <groupId>org.codehaus.mojo</groupId>
65 <artifactId>build-helper-maven-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070066 <version>1.9</version>
JArod2c5e06a2013-05-18 16:40:22 -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>
Eldon Carmand2d78ad2015-05-07 16:23:41 -070082 </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>
96 <groupId>
97 org.codehaus.mojo
98 </groupId>
99 <artifactId>
100 javacc-maven-plugin
101 </artifactId>
102 <versionRange>
103 [2.6,)
104 </versionRange>
105 <goals>
106 <goal>jjdoc</goal>
107 <goal>javacc</goal>
108 </goals>
109 </pluginExecutionFilter>
110 <action>
111 <ignore />
112 </action>
113 </pluginExecution>
114 </pluginExecutions>
115 </lifecycleMappingMetadata>
116 </configuration>
117 </plugin>
118 </plugins>
119 </pluginManagement>
120 </build>
vinayakb38b7ca42012-03-05 05:44:15 +0000121
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700122 <dependencies>
123 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700124 <groupId>org.apache.asterix</groupId>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700125 <artifactId>asterix-common</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700126 <version>0.8.8-SNAPSHOT</version>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700127 <scope>compile</scope>
128 </dependency>
129 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700130 <groupId>org.apache.asterix</groupId>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700131 <artifactId>asterix-om</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700132 <version>0.8.8-SNAPSHOT</version>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700133 <scope>compile</scope>
134 </dependency>
135 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700136 <groupId>org.apache.asterix</groupId>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700137 <artifactId>asterix-metadata</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700138 <version>0.8.8-SNAPSHOT</version>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700139 <scope>compile</scope>
140 </dependency>
141 <dependency>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700142 <groupId>xerces</groupId>
143 <artifactId>xerces</artifactId>
144 <version>2.4.0</version>
145 </dependency>
146 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +0000147
148</project>