blob: d85ba7b1bf2331fa395e1727a2b0f49573064e8c [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>
25 <artifactId>asterix</artifactId>
26 <groupId>org.apache.asterix</groupId>
27 <version>0.8.8-SNAPSHOT</version>
28 </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>
40 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.maven.plugins</groupId>
44 <artifactId>maven-compiler-plugin</artifactId>
45 <configuration>
46 <source>1.7</source>
47 <target>1.7</target>
48 <fork>true</fork>
49 </configuration>
50 </plugin>
51 <plugin>
52 <groupId>org.codehaus.mojo</groupId>
53 <artifactId>javacc-maven-plugin</artifactId>
54 <version>2.6</version>
55 <executions>
56 <execution>
57 <id>javacc</id>
58 <goals>
59 <goal>javacc</goal>
60 </goals>
61 <configuration>
62 <isStatic>false</isStatic>
63 <javaUnicodeEscape>true</javaUnicodeEscape>
64 </configuration>
65 </execution>
66 <execution>
67 <id>javacc-jjdoc</id>
68 <goals>
69 <goal>jjdoc</goal>
70 </goals>
71 <phase>process-sources</phase>
72 </execution>
73 </executions>
74 </plugin>
75 <plugin>
76 <groupId>org.codehaus.mojo</groupId>
77 <artifactId>build-helper-maven-plugin</artifactId>
78 <version>1.9</version>
79 <executions>
80 <execution>
81 <id>add-source</id>
82 <phase>generate-sources</phase>
83 <goals>
84 <goal>add-source</goal>
85 </goals>
86 <configuration>
87 <sources>
88 <source>${project.build.directory}/generated-sources/javacc/</source>
89 </sources>
90 </configuration>
91 </execution>
92 </executions>
93 </plugin>
94 </plugins>
95 <pluginManagement>
96 <plugins>
97 <!--This plugin's configuration is used to store Eclipse m2e settings
98 only. It has no influence on the Maven build itself. -->
99 <plugin>
100 <groupId>org.eclipse.m2e</groupId>
101 <artifactId>lifecycle-mapping</artifactId>
102 <version>1.0.0</version>
103 <configuration>
104 <lifecycleMappingMetadata>
105 <pluginExecutions>
106 <pluginExecution>
107 <pluginExecutionFilter>
108 <groupId>
109 org.codehaus.mojo
110 </groupId>
111 <artifactId>
112 javacc-maven-plugin
113 </artifactId>
114 <versionRange>
115 [2.6,)
116 </versionRange>
117 <goals>
118 <goal>jjdoc</goal>
119 <goal>javacc</goal>
120 </goals>
121 </pluginExecutionFilter>
122 <action>
123 <ignore />
124 </action>
125 </pluginExecution>
126 </pluginExecutions>
127 </lifecycleMappingMetadata>
128 </configuration>
129 </plugin>
130 </plugins>
131 </pluginManagement>
132 </build>
133
134 <dependencies>
135 <dependency>
136 <groupId>org.apache.asterix</groupId>
137 <artifactId>asterix-lang-common</artifactId>
138 <version>0.8.8-SNAPSHOT</version>
139 </dependency>
140 </dependencies>
141
142</project>