blob: 8465757213894079e1a883dbb6d631519a8bea66 [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 Maxon6c5af8a2015-10-02 18:35:05 -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 Maxon6c5af8a2015-10-02 18:35:05 -070024 <version>0.8.7-incubating</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>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-compiler-plugin</artifactId>
42 <version>2.3.2</version>
43 <configuration>
44 <source>1.7</source>
45 <target>1.7</target>
46 <fork>true</fork>
47 </configuration>
48 </plugin>
49 <plugin>
50 <groupId>org.codehaus.mojo</groupId>
51 <artifactId>javacc-maven-plugin</artifactId>
52 <version>2.6</version>
53 <executions>
54 <execution>
55 <id>javacc</id>
56 <goals>
57 <goal>javacc</goal>
58 </goals>
59 <configuration>
60 <isStatic>false</isStatic>
61 <javaUnicodeEscape>true</javaUnicodeEscape>
62 </configuration>
63 </execution>
64 <execution>
65 <id>javacc-jjdoc</id>
66 <goals>
67 <goal>jjdoc</goal>
68 </goals>
69 <phase>process-sources</phase>
70 </execution>
71 </executions>
72 </plugin>
JArod2c5e06a2013-05-18 16:40:22 -070073 <plugin>
74 <groupId>org.codehaus.mojo</groupId>
75 <artifactId>build-helper-maven-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070076 <version>1.9</version>
JArod2c5e06a2013-05-18 16:40:22 -070077 <executions>
78 <execution>
79 <id>add-source</id>
80 <phase>generate-sources</phase>
81 <goals>
82 <goal>add-source</goal>
83 </goals>
84 <configuration>
85 <sources>
86 <source>${project.build.directory}/generated-sources/javacc/</source>
87 </sources>
88 </configuration>
89 </execution>
90 </executions>
91 </plugin>
Eldon Carmand2d78ad2015-05-07 16:23:41 -070092 </plugins>
93 <pluginManagement>
94 <plugins>
95 <!--This plugin's configuration is used to store Eclipse m2e settings
96 only. It has no influence on the Maven build itself. -->
97 <plugin>
98 <groupId>org.eclipse.m2e</groupId>
99 <artifactId>lifecycle-mapping</artifactId>
100 <version>1.0.0</version>
101 <configuration>
102 <lifecycleMappingMetadata>
103 <pluginExecutions>
104 <pluginExecution>
105 <pluginExecutionFilter>
106 <groupId>
107 org.codehaus.mojo
108 </groupId>
109 <artifactId>
110 javacc-maven-plugin
111 </artifactId>
112 <versionRange>
113 [2.6,)
114 </versionRange>
115 <goals>
116 <goal>jjdoc</goal>
117 <goal>javacc</goal>
118 </goals>
119 </pluginExecutionFilter>
120 <action>
121 <ignore />
122 </action>
123 </pluginExecution>
124 </pluginExecutions>
125 </lifecycleMappingMetadata>
126 </configuration>
127 </plugin>
128 </plugins>
129 </pluginManagement>
130 </build>
vinayakb38b7ca42012-03-05 05:44:15 +0000131
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700132 <dependencies>
133 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700134 <groupId>org.apache.asterix</groupId>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700135 <artifactId>asterix-common</artifactId>
Ian Maxon6c5af8a2015-10-02 18:35:05 -0700136 <version>0.8.7-incubating</version>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700137 <scope>compile</scope>
138 </dependency>
139 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700140 <groupId>org.apache.asterix</groupId>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700141 <artifactId>asterix-om</artifactId>
Ian Maxon6c5af8a2015-10-02 18:35:05 -0700142 <version>0.8.7-incubating</version>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700143 <scope>compile</scope>
144 </dependency>
145 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700146 <groupId>org.apache.asterix</groupId>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700147 <artifactId>asterix-metadata</artifactId>
Ian Maxon6c5af8a2015-10-02 18:35:05 -0700148 <version>0.8.7-incubating</version>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700149 <scope>compile</scope>
150 </dependency>
151 <dependency>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700152 <groupId>xerces</groupId>
153 <artifactId>xerces</artifactId>
154 <version>2.4.0</version>
155 </dependency>
156 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +0000157
158</project>