blob: 9a2b855c96a4e457070f5f20075276872fcd45aa [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 Maxond2e1e892015-10-05 12:46:26 -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 Maxon4e6a9232015-10-05 12:46:37 -070024 <version>0.8.8-SNAPSHOT</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
Ian Maxon6e5f18e2015-11-24 18:02:48 -080036 <properties>
37 <appendedResourcesDirectory>${basedir}/../src/main/appended-resources</appendedResourcesDirectory>
38 </properties>
39
Eldon Carmand2d78ad2015-05-07 16:23:41 -070040 <artifactId>asterix-aql</artifactId>
41 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-compiler-plugin</artifactId>
46 <version>2.3.2</version>
47 <configuration>
48 <source>1.7</source>
49 <target>1.7</target>
50 <fork>true</fork>
51 </configuration>
52 </plugin>
53 <plugin>
54 <groupId>org.codehaus.mojo</groupId>
55 <artifactId>javacc-maven-plugin</artifactId>
56 <version>2.6</version>
57 <executions>
58 <execution>
59 <id>javacc</id>
60 <goals>
61 <goal>javacc</goal>
62 </goals>
63 <configuration>
64 <isStatic>false</isStatic>
65 <javaUnicodeEscape>true</javaUnicodeEscape>
66 </configuration>
67 </execution>
68 <execution>
69 <id>javacc-jjdoc</id>
70 <goals>
71 <goal>jjdoc</goal>
72 </goals>
73 <phase>process-sources</phase>
74 </execution>
75 </executions>
76 </plugin>
JArod2c5e06a2013-05-18 16:40:22 -070077 <plugin>
78 <groupId>org.codehaus.mojo</groupId>
79 <artifactId>build-helper-maven-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070080 <version>1.9</version>
JArod2c5e06a2013-05-18 16:40:22 -070081 <executions>
82 <execution>
83 <id>add-source</id>
84 <phase>generate-sources</phase>
85 <goals>
86 <goal>add-source</goal>
87 </goals>
88 <configuration>
89 <sources>
90 <source>${project.build.directory}/generated-sources/javacc/</source>
91 </sources>
92 </configuration>
93 </execution>
94 </executions>
95 </plugin>
Eldon Carmand2d78ad2015-05-07 16:23:41 -070096 </plugins>
97 <pluginManagement>
98 <plugins>
99 <!--This plugin's configuration is used to store Eclipse m2e settings
100 only. It has no influence on the Maven build itself. -->
101 <plugin>
102 <groupId>org.eclipse.m2e</groupId>
103 <artifactId>lifecycle-mapping</artifactId>
104 <version>1.0.0</version>
105 <configuration>
106 <lifecycleMappingMetadata>
107 <pluginExecutions>
108 <pluginExecution>
109 <pluginExecutionFilter>
110 <groupId>
111 org.codehaus.mojo
112 </groupId>
113 <artifactId>
114 javacc-maven-plugin
115 </artifactId>
116 <versionRange>
117 [2.6,)
118 </versionRange>
119 <goals>
120 <goal>jjdoc</goal>
121 <goal>javacc</goal>
122 </goals>
123 </pluginExecutionFilter>
124 <action>
125 <ignore />
126 </action>
127 </pluginExecution>
128 </pluginExecutions>
129 </lifecycleMappingMetadata>
130 </configuration>
131 </plugin>
132 </plugins>
133 </pluginManagement>
134 </build>
vinayakb38b7ca42012-03-05 05:44:15 +0000135
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700136 <dependencies>
137 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700138 <groupId>org.apache.asterix</groupId>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700139 <artifactId>asterix-common</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700140 <version>0.8.8-SNAPSHOT</version>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700141 <scope>compile</scope>
142 </dependency>
143 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700144 <groupId>org.apache.asterix</groupId>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700145 <artifactId>asterix-om</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700146 <version>0.8.8-SNAPSHOT</version>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700147 <scope>compile</scope>
148 </dependency>
149 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700150 <groupId>org.apache.asterix</groupId>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700151 <artifactId>asterix-metadata</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700152 <version>0.8.8-SNAPSHOT</version>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700153 <scope>compile</scope>
154 </dependency>
155 <dependency>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700156 <groupId>xerces</groupId>
157 <artifactId>xerces</artifactId>
158 <version>2.4.0</version>
159 </dependency>
160 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +0000161
162</project>