blob: 5ec2b0ff47812e23d7df8ca81b3ff6b6040d2059 [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>
Vinayak Borkar9e00d472013-12-22 12:45:40 -080020 <version>0.8.4-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>
28 <version>2.0.2</version>
29 <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>
62 <executions>
63 <execution>
64 <id>add-source</id>
65 <phase>generate-sources</phase>
66 <goals>
67 <goal>add-source</goal>
68 </goals>
69 <configuration>
70 <sources>
71 <source>${project.build.directory}/generated-sources/javacc/</source>
72 </sources>
73 </configuration>
74 </execution>
75 </executions>
76 </plugin>
vinayakb38b7ca42012-03-05 05:44:15 +000077 </plugins>
vinayakbac7e7ce2012-03-05 06:51:17 +000078 <pluginManagement>
79 <plugins>
vinayakb5ee049d2013-04-06 21:21:29 +000080 <!--This plugin's configuration is used to store Eclipse m2e settings
81 only. It has no influence on the Maven build itself. -->
vinayakbac7e7ce2012-03-05 06:51:17 +000082 <plugin>
83 <groupId>org.eclipse.m2e</groupId>
84 <artifactId>lifecycle-mapping</artifactId>
85 <version>1.0.0</version>
86 <configuration>
87 <lifecycleMappingMetadata>
88 <pluginExecutions>
89 <pluginExecution>
90 <pluginExecutionFilter>
91 <groupId>
92 org.codehaus.mojo
93 </groupId>
94 <artifactId>
95 javacc-maven-plugin
96 </artifactId>
97 <versionRange>
98 [2.6,)
99 </versionRange>
100 <goals>
101 <goal>jjdoc</goal>
vinayakb5ee049d2013-04-06 21:21:29 +0000102 <goal>javacc</goal>
vinayakbac7e7ce2012-03-05 06:51:17 +0000103 </goals>
104 </pluginExecutionFilter>
105 <action>
vinayakb8a1a7182013-04-07 01:45:00 +0000106 <ignore />
vinayakbac7e7ce2012-03-05 06:51:17 +0000107 </action>
108 </pluginExecution>
109 </pluginExecutions>
110 </lifecycleMappingMetadata>
111 </configuration>
112 </plugin>
113 </plugins>
114 </pluginManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000115 </build>
116
117 <dependencies>
ramangrover2900560cc2013-04-22 02:24:02 -0700118 <dependency>
119 <groupId>junit</groupId>
120 <artifactId>junit</artifactId>
121 <version>4.8.1</version>
122 <scope>test</scope>
123 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000124 <dependency>
125 <groupId>edu.uci.ics.asterix</groupId>
126 <artifactId>asterix-common</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800127 <version>0.8.4-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000128 <scope>compile</scope>
129 </dependency>
130 <dependency>
131 <groupId>edu.uci.ics.asterix</groupId>
132 <artifactId>asterix-om</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800133 <version>0.8.4-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000134 <scope>compile</scope>
135 </dependency>
136 <dependency>
137 <groupId>edu.uci.ics.asterix</groupId>
138 <artifactId>asterix-metadata</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800139 <version>0.8.4-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000140 <scope>compile</scope>
141 </dependency>
142 <dependency>
143 <groupId>edu.uci.ics.fuzzyjoin</groupId>
144 <artifactId>fuzzyjoin-core</artifactId>
145 <version>0.0.3</version>
146 <scope>compile</scope>
147 </dependency>
zheilbroncc5135d2013-08-05 16:40:33 -0700148 <dependency>
149 <groupId>xerces</groupId>
150 <artifactId>xerces</artifactId>
151 <version>2.4.0</version>
152 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000153 </dependencies>
154
155</project>