blob: 43ac3df217ce2bd1beea707d736b8bfd319d318e [file] [log] [blame]
Yingyi Bu391f09e2015-10-29 13:49: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
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>
Ian Maxon3da9d062016-03-16 17:05:31 -070025 <artifactId>apache-asterixdb</artifactId>
Yingyi Bu391f09e2015-10-29 13:49:39 -070026 <groupId>org.apache.asterix</groupId>
Ian Maxon3da9d062016-03-16 17:05:31 -070027 <version>0.8.9-SNAPSHOT</version>
Yingyi Bu391f09e2015-10-29 13:49:39 -070028 </parent>
29
30 <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>
38
39 <artifactId>asterix-lang-aql</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -070040 <properties>
41 <appendedResourcesDirectory>${basedir}/../src/main/appended-resources</appendedResourcesDirectory>
42 </properties>
Yingyi Bu391f09e2015-10-29 13:49:39 -070043 <build>
44 <plugins>
45 <plugin>
Yingyi Bu391f09e2015-10-29 13:49:39 -070046 <groupId>org.codehaus.mojo</groupId>
47 <artifactId>javacc-maven-plugin</artifactId>
48 <version>2.6</version>
49 <executions>
50 <execution>
51 <id>javacc</id>
52 <goals>
53 <goal>javacc</goal>
54 </goals>
55 <configuration>
56 <isStatic>false</isStatic>
57 <javaUnicodeEscape>true</javaUnicodeEscape>
58 </configuration>
59 </execution>
60 <execution>
61 <id>javacc-jjdoc</id>
62 <goals>
63 <goal>jjdoc</goal>
64 </goals>
65 <phase>process-sources</phase>
66 </execution>
67 </executions>
68 </plugin>
69 <plugin>
70 <groupId>org.codehaus.mojo</groupId>
71 <artifactId>build-helper-maven-plugin</artifactId>
72 <version>1.9</version>
73 <executions>
74 <execution>
75 <id>add-source</id>
76 <phase>generate-sources</phase>
77 <goals>
78 <goal>add-source</goal>
79 </goals>
80 <configuration>
81 <sources>
82 <source>${project.build.directory}/generated-sources/javacc/</source>
83 </sources>
84 </configuration>
85 </execution>
86 </executions>
87 </plugin>
88 </plugins>
89 <pluginManagement>
90 <plugins>
91 <!--This plugin's configuration is used to store Eclipse m2e settings
92 only. It has no influence on the Maven build itself. -->
93 <plugin>
94 <groupId>org.eclipse.m2e</groupId>
95 <artifactId>lifecycle-mapping</artifactId>
96 <version>1.0.0</version>
97 <configuration>
98 <lifecycleMappingMetadata>
99 <pluginExecutions>
100 <pluginExecution>
101 <pluginExecutionFilter>
102 <groupId>
103 org.codehaus.mojo
104 </groupId>
105 <artifactId>
106 javacc-maven-plugin
107 </artifactId>
108 <versionRange>
109 [2.6,)
110 </versionRange>
111 <goals>
112 <goal>jjdoc</goal>
113 <goal>javacc</goal>
114 </goals>
115 </pluginExecutionFilter>
116 <action>
117 <ignore />
118 </action>
119 </pluginExecution>
120 </pluginExecutions>
121 </lifecycleMappingMetadata>
122 </configuration>
123 </plugin>
124 </plugins>
125 </pluginManagement>
126 </build>
127
128 <dependencies>
129 <dependency>
130 <groupId>org.apache.asterix</groupId>
131 <artifactId>asterix-lang-common</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -0700132 <version>0.8.9-SNAPSHOT</version>
Yingyi Bu391f09e2015-10-29 13:49:39 -0700133 </dependency>
134 </dependencies>
135
136</project>