blob: 50a0f99f2a4715b7ee3d0943c1764dca996625f8 [file] [log] [blame]
zheilbron5e741de2013-02-16 21:34:39 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 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 +00003 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <artifactId>asterix</artifactId>
6 <groupId>edu.uci.ics.asterix</groupId>
7 <version>0.0.4-SNAPSHOT</version>
8 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +00009 <artifactId>asterix-aql</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000010 <build>
11 <plugins>
12 <plugin>
13 <groupId>org.apache.maven.plugins</groupId>
14 <artifactId>maven-compiler-plugin</artifactId>
15 <version>2.0.2</version>
16 <configuration>
zheilbron5e741de2013-02-16 21:34:39 +000017 <source>1.7</source>
18 <target>1.7</target>
buyingyi8a61a182013-03-03 08:41:25 +000019 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000020 </configuration>
21 </plugin>
22 <plugin>
23 <groupId>org.codehaus.mojo</groupId>
24 <artifactId>javacc-maven-plugin</artifactId>
25 <version>2.6</version>
26 <executions>
27 <execution>
28 <id>javacc</id>
29 <goals>
30 <goal>javacc</goal>
31 </goals>
32 <configuration>
33 <isStatic>false</isStatic>
34 </configuration>
35 </execution>
36 <execution>
37 <id>javacc-jjdoc</id>
38 <goals>
39 <goal>jjdoc</goal>
40 </goals>
zheilbron5e741de2013-02-16 21:34:39 +000041 <phase>process-sources</phase>
vinayakb38b7ca42012-03-05 05:44:15 +000042 </execution>
43 </executions>
44 </plugin>
45 </plugins>
vinayakbac7e7ce2012-03-05 06:51:17 +000046 <pluginManagement>
47 <plugins>
zheilbron5e741de2013-02-16 21:34:39 +000048 <!--This plugin's configuration is used to store Eclipse m2e settings
49 only. It has no influence on the Maven build itself. -->
vinayakbac7e7ce2012-03-05 06:51:17 +000050 <plugin>
51 <groupId>org.eclipse.m2e</groupId>
52 <artifactId>lifecycle-mapping</artifactId>
53 <version>1.0.0</version>
54 <configuration>
55 <lifecycleMappingMetadata>
56 <pluginExecutions>
57 <pluginExecution>
58 <pluginExecutionFilter>
59 <groupId>
60 org.codehaus.mojo
61 </groupId>
62 <artifactId>
63 javacc-maven-plugin
64 </artifactId>
65 <versionRange>
66 [2.6,)
67 </versionRange>
68 <goals>
69 <goal>jjdoc</goal>
70 </goals>
71 </pluginExecutionFilter>
72 <action>
73 <ignore></ignore>
74 </action>
75 </pluginExecution>
76 </pluginExecutions>
77 </lifecycleMappingMetadata>
78 </configuration>
79 </plugin>
80 </plugins>
81 </pluginManagement>
vinayakb38b7ca42012-03-05 05:44:15 +000082 </build>
83
84 <dependencies>
85 <dependency>
86 <groupId>edu.uci.ics.asterix</groupId>
87 <artifactId>asterix-common</artifactId>
88 <version>0.0.4-SNAPSHOT</version>
89 <scope>compile</scope>
90 </dependency>
91 <dependency>
92 <groupId>edu.uci.ics.asterix</groupId>
93 <artifactId>asterix-om</artifactId>
94 <version>0.0.4-SNAPSHOT</version>
95 <scope>compile</scope>
96 </dependency>
97 <dependency>
98 <groupId>edu.uci.ics.asterix</groupId>
99 <artifactId>asterix-metadata</artifactId>
100 <version>0.0.4-SNAPSHOT</version>
101 <scope>compile</scope>
102 </dependency>
103 <dependency>
104 <groupId>edu.uci.ics.fuzzyjoin</groupId>
105 <artifactId>fuzzyjoin-core</artifactId>
106 <version>0.0.3</version>
107 <scope>compile</scope>
108 </dependency>
109 </dependencies>
110
111</project>