blob: d69538e7a1ba42ec573c124b34a1e7e9ff6743ff [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-sqlpp</artifactId>
40 <build>
41 <plugins>
42 <plugin>
Yingyi Bu391f09e2015-10-29 13:49:39 -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>
66 <plugin>
67 <groupId>org.codehaus.mojo</groupId>
68 <artifactId>build-helper-maven-plugin</artifactId>
69 <version>1.9</version>
70 <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>
85 </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>
124
125 <dependencies>
126 <dependency>
127 <groupId>org.apache.asterix</groupId>
128 <artifactId>asterix-lang-common</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -0700129 <version>0.8.9-SNAPSHOT</version>
Yingyi Bu391f09e2015-10-29 13:49:39 -0700130 </dependency>
131 </dependencies>
132
Ian Maxon3da9d062016-03-16 17:05:31 -0700133</project>