blob: 26e9684a97f03771eca74feeea985460da6832e5 [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 !-->
Eldon Carmand2d78ad2015-05-07 16:23:41 -070015<project
16 xmlns="http://maven.apache.org/POM/4.0.0"
17 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19 <modelVersion>4.0.0</modelVersion>
20 <parent>
21 <artifactId>asterix</artifactId>
22 <groupId>edu.uci.ics.asterix</groupId>
23 <version>0.8.7-SNAPSHOT</version>
24 </parent>
Ian4a816dc2014-11-26 15:46:32 -080025
Eldon Carmand2d78ad2015-05-07 16:23:41 -070026 <licenses>
27 <license>
28 <name>Apache License, Version 2.0</name>
29 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
30 <distribution>repo</distribution>
31 <comments>A business-friendly OSS license</comments>
32 </license>
33 </licenses>
Ian4a816dc2014-11-26 15:46:32 -080034
Eldon Carmand2d78ad2015-05-07 16:23:41 -070035 <artifactId>asterix-aql</artifactId>
36 <build>
37 <plugins>
38 <plugin>
39 <groupId>org.apache.maven.plugins</groupId>
40 <artifactId>maven-compiler-plugin</artifactId>
41 <version>2.3.2</version>
42 <configuration>
43 <source>1.7</source>
44 <target>1.7</target>
45 <fork>true</fork>
46 </configuration>
47 </plugin>
48 <plugin>
49 <groupId>org.codehaus.mojo</groupId>
50 <artifactId>javacc-maven-plugin</artifactId>
51 <version>2.6</version>
52 <executions>
53 <execution>
54 <id>javacc</id>
55 <goals>
56 <goal>javacc</goal>
57 </goals>
58 <configuration>
59 <isStatic>false</isStatic>
60 <javaUnicodeEscape>true</javaUnicodeEscape>
61 </configuration>
62 </execution>
63 <execution>
64 <id>javacc-jjdoc</id>
65 <goals>
66 <goal>jjdoc</goal>
67 </goals>
68 <phase>process-sources</phase>
69 </execution>
70 </executions>
71 </plugin>
JArod2c5e06a2013-05-18 16:40:22 -070072 <plugin>
73 <groupId>org.codehaus.mojo</groupId>
74 <artifactId>build-helper-maven-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070075 <version>1.9</version>
JArod2c5e06a2013-05-18 16:40:22 -070076 <executions>
77 <execution>
78 <id>add-source</id>
79 <phase>generate-sources</phase>
80 <goals>
81 <goal>add-source</goal>
82 </goals>
83 <configuration>
84 <sources>
85 <source>${project.build.directory}/generated-sources/javacc/</source>
86 </sources>
87 </configuration>
88 </execution>
89 </executions>
90 </plugin>
Eldon Carmand2d78ad2015-05-07 16:23:41 -070091 </plugins>
92 <pluginManagement>
93 <plugins>
94 <!--This plugin's configuration is used to store Eclipse m2e settings
95 only. It has no influence on the Maven build itself. -->
96 <plugin>
97 <groupId>org.eclipse.m2e</groupId>
98 <artifactId>lifecycle-mapping</artifactId>
99 <version>1.0.0</version>
100 <configuration>
101 <lifecycleMappingMetadata>
102 <pluginExecutions>
103 <pluginExecution>
104 <pluginExecutionFilter>
105 <groupId>
106 org.codehaus.mojo
107 </groupId>
108 <artifactId>
109 javacc-maven-plugin
110 </artifactId>
111 <versionRange>
112 [2.6,)
113 </versionRange>
114 <goals>
115 <goal>jjdoc</goal>
116 <goal>javacc</goal>
117 </goals>
118 </pluginExecutionFilter>
119 <action>
120 <ignore />
121 </action>
122 </pluginExecution>
123 </pluginExecutions>
124 </lifecycleMappingMetadata>
125 </configuration>
126 </plugin>
127 </plugins>
128 </pluginManagement>
129 </build>
vinayakb38b7ca42012-03-05 05:44:15 +0000130
Eldon Carmand2d78ad2015-05-07 16:23:41 -0700131 <dependencies>
132 <dependency>
133 <groupId>edu.uci.ics.asterix</groupId>
134 <artifactId>asterix-common</artifactId>
135 <version>0.8.7-SNAPSHOT</version>
136 <scope>compile</scope>
137 </dependency>
138 <dependency>
139 <groupId>edu.uci.ics.asterix</groupId>
140 <artifactId>asterix-om</artifactId>
141 <version>0.8.7-SNAPSHOT</version>
142 <scope>compile</scope>
143 </dependency>
144 <dependency>
145 <groupId>edu.uci.ics.asterix</groupId>
146 <artifactId>asterix-metadata</artifactId>
147 <version>0.8.7-SNAPSHOT</version>
148 <scope>compile</scope>
149 </dependency>
150 <dependency>
151 <groupId>edu.uci.ics.fuzzyjoin</groupId>
152 <artifactId>fuzzyjoin-core</artifactId>
153 <version>0.0.3</version>
154 <scope>compile</scope>
155 </dependency>
156 <dependency>
157 <groupId>xerces</groupId>
158 <artifactId>xerces</artifactId>
159 <version>2.4.0</version>
160 </dependency>
161 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +0000162
163</project>