blob: f3db66207c2c9a87b38b6b39f80ad336ea1dcc99 [file] [log] [blame]
ramangrover29ae85a1d2015-06-26 17:26:05 -07001<!-- ! Copyright 2009-2013 by The Regents of the University of California
2 ! Licensed under the Apache License, Version 2.0 (the "License"); ! you may
3 not use this file except in compliance with the License. ! you may obtain
4 a copy of the License from ! ! http://www.apache.org/licenses/LICENSE-2.0
5 ! ! Unless required by applicable law or agreed to in writing, software !
6 distributed under the License is distributed on an "AS IS" BASIS, ! WITHOUT
7 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! See the
8 License for the specific language governing permissions and ! limitations
9 under the License. ! -->
10<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11 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 +000012 <modelVersion>4.0.0</modelVersion>
13 <parent>
14 <artifactId>asterix</artifactId>
15 <groupId>edu.uci.ics.asterix</groupId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070016 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000017 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000018 <artifactId>asterix-algebra</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000019
ramangrover29ae85a1d2015-06-26 17:26:05 -070020 <licenses>
21 <license>
22 <name>Apache License, Version 2.0</name>
23 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
24 <distribution>repo</distribution>
25 <comments>A business-friendly OSS license</comments>
26 </license>
27 </licenses>
Ian4a816dc2014-11-26 15:46:32 -080028
vinayakb38b7ca42012-03-05 05:44:15 +000029 <build>
30 <plugins>
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070034 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000035 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000036 <source>1.7</source>
37 <target>1.7</target>
38 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000039 </configuration>
40 </plugin>
41 <plugin>
42 <groupId>org.codehaus.mojo</groupId>
43 <artifactId>javacc-maven-plugin</artifactId>
44 <version>2.6</version>
45 <executions>
46 <execution>
47 <id>javacc</id>
48 <goals>
49 <goal>javacc</goal>
50 </goals>
51 <configuration>
52 <isStatic>false</isStatic>
53 </configuration>
54 </execution>
55 </executions>
56 </plugin>
57 </plugins>
vinayakb5ee049d2013-04-06 21:21:29 +000058 <pluginManagement>
59 <plugins>
ramangrover29ae85a1d2015-06-26 17:26:05 -070060 <!--This plugin's configuration is used to store Eclipse m2e settings
61 only. It has no influence on the Maven build itself. -->
vinayakb5ee049d2013-04-06 21:21:29 +000062 <plugin>
63 <groupId>org.eclipse.m2e</groupId>
64 <artifactId>lifecycle-mapping</artifactId>
65 <version>1.0.0</version>
66 <configuration>
67 <lifecycleMappingMetadata>
68 <pluginExecutions>
69 <pluginExecution>
70 <pluginExecutionFilter>
71 <groupId>
72 org.codehaus.mojo
73 </groupId>
74 <artifactId>
75 javacc-maven-plugin
76 </artifactId>
77 <versionRange>
78 [2.6,)
79 </versionRange>
80 <goals>
81 <goal>javacc</goal>
82 </goals>
83 </pluginExecutionFilter>
84 <action>
vinayakb8a1a7182013-04-07 01:45:00 +000085 <ignore />
vinayakb5ee049d2013-04-06 21:21:29 +000086 </action>
87 </pluginExecution>
88 </pluginExecutions>
89 </lifecycleMappingMetadata>
90 </configuration>
91 </plugin>
92 </plugins>
93 </pluginManagement>
vinayakb38b7ca42012-03-05 05:44:15 +000094 </build>
95
96 <dependencies>
97 <dependency>
98 <groupId>edu.uci.ics.asterix</groupId>
99 <artifactId>asterix-runtime</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700100 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000101 <scope>compile</scope>
102 </dependency>
103 <dependency>
104 <groupId>edu.uci.ics.asterix</groupId>
105 <artifactId>asterix-aql</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700106 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000107 <scope>compile</scope>
108 </dependency>
109 <dependency>
110 <groupId>edu.uci.ics.asterix</groupId>
111 <artifactId>asterix-metadata</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700112 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000113 <scope>compile</scope>
114 </dependency>
ramangrover29fef378d2013-06-21 18:29:21 -0700115 <dependency>
116 <groupId>edu.uci.ics.asterix</groupId>
117 <artifactId>asterix-external-data</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700118 <version>0.8.7-SNAPSHOT</version>
ramangrover29fef378d2013-06-21 18:29:21 -0700119 <scope>compile</scope>
120 </dependency>
ramangrover29ae85a1d2015-06-26 17:26:05 -0700121 <dependency>
122 <groupId>edu.uci.ics.asterix</groupId>
123 <artifactId>asterix-transactions</artifactId>
124 <version>0.8.7-SNAPSHOT</version>
125 <scope>compile</scope>
126 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000127 <dependency>
128 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000129 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000130 </dependency>
131 <dependency>
132 <groupId>org.json</groupId>
133 <artifactId>json</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000134 </dependency>
135 </dependencies>
136</project>