blob: 91f05b9e3b8f9e9ec2f63b21c8afbf4de99d4026 [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 Maxon1472b312015-10-02 17:00:01 -070019<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">
Eldon Carmand2d78ad2015-05-07 16:23:41 -070023 <modelVersion>4.0.0</modelVersion>
24 <parent>
25 <artifactId>asterix</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070026 <groupId>org.apache.asterix</groupId>
Ian Maxon1472b312015-10-02 17:00:01 -070027 <version>0.8.7-SNAPSHOT</version>
Eldon Carmand2d78ad2015-05-07 16:23:41 -070028 </parent>
Ian4a816dc2014-11-26 15:46:32 -080029
Eldon Carmand2d78ad2015-05-07 16:23:41 -070030 <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>
Ian4a816dc2014-11-26 15:46:32 -080038
Eldon Carmand2d78ad2015-05-07 16:23:41 -070039 <artifactId>asterix-aql</artifactId>
40 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.maven.plugins</groupId>
44 <artifactId>maven-compiler-plugin</artifactId>
45 <version>2.3.2</version>
46 <configuration>
47 <source>1.7</source>
48 <target>1.7</target>
49 <fork>true</fork>
50 </configuration>
51 </plugin>
52 <plugin>
53 <groupId>org.codehaus.mojo</groupId>
54 <artifactId>javacc-maven-plugin</artifactId>
55 <version>2.6</version>
56 <executions>
57 <execution>
58 <id>javacc</id>
59 <goals>
60 <goal>javacc</goal>
61 </goals>
62 <configuration>
63 <isStatic>false</isStatic>
64 <javaUnicodeEscape>true</javaUnicodeEscape>
65 </configuration>
66 </execution>
67 <execution>
68 <id>javacc-jjdoc</id>
69 <goals>
70 <goal>jjdoc</goal>
71 </goals>
72 <phase>process-sources</phase>
73 </execution>
74 </executions>
75 </plugin>
JArod2c5e06a2013-05-18 16:40:22 -070076 <plugin>
77 <groupId>org.codehaus.mojo</groupId>
78 <artifactId>build-helper-maven-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070079 <version>1.9</version>
JArod2c5e06a2013-05-18 16:40:22 -070080 <executions>
81 <execution>
82 <id>add-source</id>
83 <phase>generate-sources</phase>
84 <goals>
85 <goal>add-source</goal>
86 </goals>
87 <configuration>
88 <sources>
89 <source>${project.build.directory}/generated-sources/javacc/</source>
90 </sources>
91 </configuration>
92 </execution>
93 </executions>
94 </plugin>
Eldon Carmand2d78ad2015-05-07 16:23:41 -070095 </plugins>
96 <pluginManagement>
97 <plugins>
98 <!--This plugin's configuration is used to store Eclipse m2e settings
99 only. It has no influence on the Maven build itself. -->
100 <plugin>
101 <groupId>org.eclipse.m2e</groupId>
102 <artifactId>lifecycle-mapping</artifactId>
103 <version>1.0.0</version>
104 <configuration>
105 <lifecycleMappingMetadata>
106 <pluginExecutions>
107 <pluginExecution>
108 <pluginExecutionFilter>
109 <groupId>
110 org.codehaus.mojo
111 </groupId>
112 <artifactId>
113 javacc-maven-plugin
114 </artifactId>
115 <versionRange>
116 [2.6,)
117 </versionRange>
118 <goals>
119 <goal>jjdoc</goal>
120 <goal>javacc</goal>
121 </goals>
122 </pluginExecutionFilter>
123 <action>
124 <ignore />
125 </action>
126 </pluginExecution>
127 </pluginExecutions>
128 </lifecycleMappingMetadata>
129 </configuration>
130 </plugin>
131 </plugins>
132 </pluginManagement>
133 </build>
vinayakb38b7ca42012-03-05 05:44:15 +0000134
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700135 <dependencies>
136 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700137 <groupId>org.apache.asterix</groupId>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700138 <artifactId>asterix-common</artifactId>
Ian Maxon1472b312015-10-02 17:00:01 -0700139 <version>0.8.7-SNAPSHOT</version>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700140 <scope>compile</scope>
141 </dependency>
142 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700143 <groupId>org.apache.asterix</groupId>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700144 <artifactId>asterix-om</artifactId>
Ian Maxon1472b312015-10-02 17:00:01 -0700145 <version>0.8.7-SNAPSHOT</version>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700146 <scope>compile</scope>
147 </dependency>
148 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700149 <groupId>org.apache.asterix</groupId>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700150 <artifactId>asterix-metadata</artifactId>
Ian Maxon1472b312015-10-02 17:00:01 -0700151 <version>0.8.7-SNAPSHOT</version>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700152 <scope>compile</scope>
153 </dependency>
154 <dependency>
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700155 <groupId>xerces</groupId>
156 <artifactId>xerces</artifactId>
157 <version>2.4.0</version>
158 </dependency>
159 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +0000160
161</project>