Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 1 | <!-- |
| 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 | !--> |
vinayakb | 8a1a718 | 2013-04-07 01:45:00 +0000 | [diff] [blame] | 15 | <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"> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 16 | <modelVersion>4.0.0</modelVersion> |
| 17 | <parent> |
| 18 | <artifactId>asterix</artifactId> |
| 19 | <groupId>edu.uci.ics.asterix</groupId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 20 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 21 | </parent> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 22 | <artifactId>asterix-algebra</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 23 | |
| 24 | <build> |
| 25 | <plugins> |
| 26 | <plugin> |
| 27 | <groupId>org.apache.maven.plugins</groupId> |
| 28 | <artifactId>maven-compiler-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 29 | <version>2.3.2</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 30 | <configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 31 | <source>1.7</source> |
| 32 | <target>1.7</target> |
| 33 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 34 | </configuration> |
| 35 | </plugin> |
| 36 | <plugin> |
| 37 | <groupId>org.codehaus.mojo</groupId> |
| 38 | <artifactId>javacc-maven-plugin</artifactId> |
| 39 | <version>2.6</version> |
| 40 | <executions> |
| 41 | <execution> |
| 42 | <id>javacc</id> |
| 43 | <goals> |
| 44 | <goal>javacc</goal> |
| 45 | </goals> |
| 46 | <configuration> |
| 47 | <isStatic>false</isStatic> |
| 48 | </configuration> |
| 49 | </execution> |
| 50 | </executions> |
| 51 | </plugin> |
| 52 | </plugins> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 53 | <pluginManagement> |
| 54 | <plugins> |
| 55 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 56 | <plugin> |
| 57 | <groupId>org.eclipse.m2e</groupId> |
| 58 | <artifactId>lifecycle-mapping</artifactId> |
| 59 | <version>1.0.0</version> |
| 60 | <configuration> |
| 61 | <lifecycleMappingMetadata> |
| 62 | <pluginExecutions> |
| 63 | <pluginExecution> |
| 64 | <pluginExecutionFilter> |
| 65 | <groupId> |
| 66 | org.codehaus.mojo |
| 67 | </groupId> |
| 68 | <artifactId> |
| 69 | javacc-maven-plugin |
| 70 | </artifactId> |
| 71 | <versionRange> |
| 72 | [2.6,) |
| 73 | </versionRange> |
| 74 | <goals> |
| 75 | <goal>javacc</goal> |
| 76 | </goals> |
| 77 | </pluginExecutionFilter> |
| 78 | <action> |
vinayakb | 8a1a718 | 2013-04-07 01:45:00 +0000 | [diff] [blame] | 79 | <ignore /> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 80 | </action> |
| 81 | </pluginExecution> |
| 82 | </pluginExecutions> |
| 83 | </lifecycleMappingMetadata> |
| 84 | </configuration> |
| 85 | </plugin> |
| 86 | </plugins> |
| 87 | </pluginManagement> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 88 | </build> |
| 89 | |
| 90 | <dependencies> |
| 91 | <dependency> |
| 92 | <groupId>edu.uci.ics.asterix</groupId> |
| 93 | <artifactId>asterix-runtime</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 94 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 95 | <scope>compile</scope> |
| 96 | </dependency> |
| 97 | <dependency> |
| 98 | <groupId>edu.uci.ics.asterix</groupId> |
| 99 | <artifactId>asterix-aql</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 100 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 101 | <scope>compile</scope> |
| 102 | </dependency> |
| 103 | <dependency> |
| 104 | <groupId>edu.uci.ics.asterix</groupId> |
| 105 | <artifactId>asterix-metadata</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 106 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 107 | <scope>compile</scope> |
| 108 | </dependency> |
ramangrover29 | fef378d | 2013-06-21 18:29:21 -0700 | [diff] [blame] | 109 | <dependency> |
| 110 | <groupId>edu.uci.ics.asterix</groupId> |
| 111 | <artifactId>asterix-external-data</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 112 | <version>0.8.7-SNAPSHOT</version> |
ramangrover29 | fef378d | 2013-06-21 18:29:21 -0700 | [diff] [blame] | 113 | <scope>compile</scope> |
| 114 | </dependency> |
ramangrover29 | 18e3138 | 2013-05-08 17:47:33 -0700 | [diff] [blame] | 115 | <dependency> |
| 116 | <groupId>edu.uci.ics.asterix</groupId> |
| 117 | <artifactId>asterix-transactions</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 118 | <version>0.8.7-SNAPSHOT</version> |
ramangrover29 | 18e3138 | 2013-05-08 17:47:33 -0700 | [diff] [blame] | 119 | <scope>compile</scope> |
| 120 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 121 | <dependency> |
| 122 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 123 | <artifactId>algebricks-compiler</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 124 | </dependency> |
| 125 | <dependency> |
| 126 | <groupId>org.json</groupId> |
| 127 | <artifactId>json</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 128 | </dependency> |
| 129 | </dependencies> |
| 130 | </project> |