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