blob: 1eeb6afad090ec891ea0eb9bad4c49409f0b27ff [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001<!--
2 ! Copyright 2009-2013 by The Regents of the University of California
3 ! Licensed under the Apache License, Version 2.0 (the "License");
4 ! you may not use this file except in compliance with the License.
5 ! you may obtain a copy of the License from
6 !
7 ! http://www.apache.org/licenses/LICENSE-2.0
8 !
9 ! Unless required by applicable law or agreed to in writing, software
10 ! distributed under the License is distributed on an "AS IS" BASIS,
11 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 ! See the License for the specific language governing permissions and
13 ! limitations under the License.
14 !-->
vinayakb8a1a7182013-04-07 01:45:00 +000015<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">
vinayakb38b7ca42012-03-05 05:44:15 +000016 <modelVersion>4.0.0</modelVersion>
17 <parent>
18 <artifactId>asterix</artifactId>
19 <groupId>edu.uci.ics.asterix</groupId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070020 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000021 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000022 <artifactId>asterix-aql</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000023 <build>
24 <plugins>
25 <plugin>
26 <groupId>org.apache.maven.plugins</groupId>
27 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070028 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000029 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000030 <source>1.7</source>
31 <target>1.7</target>
32 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000033 </configuration>
34 </plugin>
35 <plugin>
36 <groupId>org.codehaus.mojo</groupId>
37 <artifactId>javacc-maven-plugin</artifactId>
38 <version>2.6</version>
39 <executions>
40 <execution>
41 <id>javacc</id>
42 <goals>
43 <goal>javacc</goal>
44 </goals>
45 <configuration>
46 <isStatic>false</isStatic>
icetindilf4b2f752013-05-30 20:26:52 -070047 <javaUnicodeEscape>true</javaUnicodeEscape>
vinayakb38b7ca42012-03-05 05:44:15 +000048 </configuration>
49 </execution>
50 <execution>
51 <id>javacc-jjdoc</id>
52 <goals>
53 <goal>jjdoc</goal>
54 </goals>
vinayakb5ee049d2013-04-06 21:21:29 +000055 <phase>process-sources</phase>
vinayakb38b7ca42012-03-05 05:44:15 +000056 </execution>
57 </executions>
58 </plugin>
JArod2c5e06a2013-05-18 16:40:22 -070059 <plugin>
60 <groupId>org.codehaus.mojo</groupId>
61 <artifactId>build-helper-maven-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070062 <version>1.9</version>
JArod2c5e06a2013-05-18 16:40:22 -070063 <executions>
64 <execution>
65 <id>add-source</id>
66 <phase>generate-sources</phase>
67 <goals>
68 <goal>add-source</goal>
69 </goals>
70 <configuration>
71 <sources>
72 <source>${project.build.directory}/generated-sources/javacc/</source>
73 </sources>
74 </configuration>
75 </execution>
76 </executions>
77 </plugin>
vinayakb38b7ca42012-03-05 05:44:15 +000078 </plugins>
vinayakbac7e7ce2012-03-05 06:51:17 +000079 <pluginManagement>
80 <plugins>
vinayakb5ee049d2013-04-06 21:21:29 +000081 <!--This plugin's configuration is used to store Eclipse m2e settings
82 only. It has no influence on the Maven build itself. -->
vinayakbac7e7ce2012-03-05 06:51:17 +000083 <plugin>
84 <groupId>org.eclipse.m2e</groupId>
85 <artifactId>lifecycle-mapping</artifactId>
86 <version>1.0.0</version>
87 <configuration>
88 <lifecycleMappingMetadata>
89 <pluginExecutions>
90 <pluginExecution>
91 <pluginExecutionFilter>
92 <groupId>
93 org.codehaus.mojo
94 </groupId>
95 <artifactId>
96 javacc-maven-plugin
97 </artifactId>
98 <versionRange>
99 [2.6,)
100 </versionRange>
101 <goals>
102 <goal>jjdoc</goal>
vinayakb5ee049d2013-04-06 21:21:29 +0000103 <goal>javacc</goal>
vinayakbac7e7ce2012-03-05 06:51:17 +0000104 </goals>
105 </pluginExecutionFilter>
106 <action>
vinayakb8a1a7182013-04-07 01:45:00 +0000107 <ignore />
vinayakbac7e7ce2012-03-05 06:51:17 +0000108 </action>
109 </pluginExecution>
110 </pluginExecutions>
111 </lifecycleMappingMetadata>
112 </configuration>
113 </plugin>
114 </plugins>
115 </pluginManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000116 </build>
117
118 <dependencies>
119 <dependency>
120 <groupId>edu.uci.ics.asterix</groupId>
121 <artifactId>asterix-common</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700122 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000123 <scope>compile</scope>
124 </dependency>
125 <dependency>
126 <groupId>edu.uci.ics.asterix</groupId>
127 <artifactId>asterix-om</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700128 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000129 <scope>compile</scope>
130 </dependency>
131 <dependency>
132 <groupId>edu.uci.ics.asterix</groupId>
133 <artifactId>asterix-metadata</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700134 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000135 <scope>compile</scope>
136 </dependency>
137 <dependency>
138 <groupId>edu.uci.ics.fuzzyjoin</groupId>
139 <artifactId>fuzzyjoin-core</artifactId>
140 <version>0.0.3</version>
141 <scope>compile</scope>
142 </dependency>
zheilbroncc5135d2013-08-05 16:40:33 -0700143 <dependency>
144 <groupId>xerces</groupId>
145 <artifactId>xerces</artifactId>
146 <version>2.4.0</version>
147 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000148 </dependencies>
149
150</project>