blob: 189f71c58edcd24254fe17d04640aca8aceecba5 [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 !-->
Eldon Carmand2d78ad2015-05-07 16:23:41 -070019<project
20 xmlns="http://maven.apache.org/POM/4.0.0"
21 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24 <parent>
25 <artifactId>asterix</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070026 <groupId>org.apache.asterix</groupId>
Eldon Carmand2d78ad2015-05-07 16:23:41 -070027 <version>0.8.7-SNAPSHOT</version>
28 </parent>
Ian4a816dc2014-11-26 15:46:32 -080029
Eldon Carmand2d78ad2015-05-07 16:23:41 -070030 <licenses>
31 <license>
32 <name>Apache License, Version 2.0</name>
33 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
34 <distribution>repo</distribution>
35 <comments>A business-friendly OSS license</comments>
36 </license>
37 </licenses>
Ian4a816dc2014-11-26 15:46:32 -080038
Eldon Carmand2d78ad2015-05-07 16:23:41 -070039 <artifactId>asterix-aql</artifactId>
40 <build>
41 <plugins>
42 <plugin>
Eldon Carmand2d78ad2015-05-07 16:23:41 -070043 <groupId>org.codehaus.mojo</groupId>
44 <artifactId>javacc-maven-plugin</artifactId>
45 <version>2.6</version>
46 <executions>
47 <execution>
48 <id>javacc</id>
49 <goals>
50 <goal>javacc</goal>
51 </goals>
52 <configuration>
53 <isStatic>false</isStatic>
54 <javaUnicodeEscape>true</javaUnicodeEscape>
55 </configuration>
56 </execution>
57 <execution>
58 <id>javacc-jjdoc</id>
59 <goals>
60 <goal>jjdoc</goal>
61 </goals>
62 <phase>process-sources</phase>
63 </execution>
64 </executions>
65 </plugin>
JArod2c5e06a2013-05-18 16:40:22 -070066 <plugin>
67 <groupId>org.codehaus.mojo</groupId>
68 <artifactId>build-helper-maven-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070069 <version>1.9</version>
JArod2c5e06a2013-05-18 16:40:22 -070070 <executions>
71 <execution>
72 <id>add-source</id>
73 <phase>generate-sources</phase>
74 <goals>
75 <goal>add-source</goal>
76 </goals>
77 <configuration>
78 <sources>
79 <source>${project.build.directory}/generated-sources/javacc/</source>
80 </sources>
81 </configuration>
82 </execution>
83 </executions>
84 </plugin>
Eldon Carmand2d78ad2015-05-07 16:23:41 -070085 </plugins>
86 <pluginManagement>
87 <plugins>
88 <!--This plugin's configuration is used to store Eclipse m2e settings
89 only. It has no influence on the Maven build itself. -->
90 <plugin>
91 <groupId>org.eclipse.m2e</groupId>
92 <artifactId>lifecycle-mapping</artifactId>
93 <version>1.0.0</version>
94 <configuration>
95 <lifecycleMappingMetadata>
96 <pluginExecutions>
97 <pluginExecution>
98 <pluginExecutionFilter>
99 <groupId>
100 org.codehaus.mojo
101 </groupId>
102 <artifactId>
103 javacc-maven-plugin
104 </artifactId>
105 <versionRange>
106 [2.6,)
107 </versionRange>
108 <goals>
109 <goal>jjdoc</goal>
110 <goal>javacc</goal>
111 </goals>
112 </pluginExecutionFilter>
113 <action>
114 <ignore />
115 </action>
116 </pluginExecution>
117 </pluginExecutions>
118 </lifecycleMappingMetadata>
119 </configuration>
120 </plugin>
121 </plugins>
122 </pluginManagement>
123 </build>
vinayakb38b7ca42012-03-05 05:44:15 +0000124
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700125 <dependencies>
126 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700127 <groupId>org.apache.asterix</groupId>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700128 <artifactId>asterix-common</artifactId>
129 <version>0.8.7-SNAPSHOT</version>
130 <scope>compile</scope>
131 </dependency>
132 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700133 <groupId>org.apache.asterix</groupId>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700134 <artifactId>asterix-om</artifactId>
135 <version>0.8.7-SNAPSHOT</version>
136 <scope>compile</scope>
137 </dependency>
138 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700139 <groupId>org.apache.asterix</groupId>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700140 <artifactId>asterix-metadata</artifactId>
141 <version>0.8.7-SNAPSHOT</version>
142 <scope>compile</scope>
143 </dependency>
144 <dependency>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700145 <groupId>xerces</groupId>
146 <artifactId>xerces</artifactId>
147 <version>2.4.0</version>
148 </dependency>
149 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +0000150
151</project>