ramangrover29 | ae85a1d | 2015-06-26 17:26:05 -0700 | [diff] [blame] | 1 | <!-- ! 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"> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 12 | <modelVersion>4.0.0</modelVersion> |
| 13 | <parent> |
| 14 | <artifactId>asterix</artifactId> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame^] | 15 | <groupId>org.apache.asterix</groupId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 16 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 17 | </parent> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 18 | <artifactId>asterix-algebra</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 19 | |
ramangrover29 | ae85a1d | 2015-06-26 17:26:05 -0700 | [diff] [blame] | 20 | <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> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 28 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 29 | <build> |
| 30 | <plugins> |
| 31 | <plugin> |
| 32 | <groupId>org.apache.maven.plugins</groupId> |
| 33 | <artifactId>maven-compiler-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 34 | <version>2.3.2</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 35 | <configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 36 | <source>1.7</source> |
| 37 | <target>1.7</target> |
| 38 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 39 | </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> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 58 | <pluginManagement> |
| 59 | <plugins> |
ramangrover29 | ae85a1d | 2015-06-26 17:26:05 -0700 | [diff] [blame] | 60 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 61 | only. It has no influence on the Maven build itself. --> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 62 | <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> |
vinayakb | 8a1a718 | 2013-04-07 01:45:00 +0000 | [diff] [blame] | 85 | <ignore /> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 86 | </action> |
| 87 | </pluginExecution> |
| 88 | </pluginExecutions> |
| 89 | </lifecycleMappingMetadata> |
| 90 | </configuration> |
| 91 | </plugin> |
| 92 | </plugins> |
| 93 | </pluginManagement> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 94 | </build> |
| 95 | |
| 96 | <dependencies> |
| 97 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame^] | 98 | <groupId>org.apache.asterix</groupId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 99 | <artifactId>asterix-runtime</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> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame^] | 104 | <groupId>org.apache.asterix</groupId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 105 | <artifactId>asterix-aql</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> |
| 109 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame^] | 110 | <groupId>org.apache.asterix</groupId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 111 | <artifactId>asterix-metadata</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 112 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 113 | <scope>compile</scope> |
| 114 | </dependency> |
ramangrover29 | fef378d | 2013-06-21 18:29:21 -0700 | [diff] [blame] | 115 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame^] | 116 | <groupId>org.apache.asterix</groupId> |
ramangrover29 | fef378d | 2013-06-21 18:29:21 -0700 | [diff] [blame] | 117 | <artifactId>asterix-external-data</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 118 | <version>0.8.7-SNAPSHOT</version> |
ramangrover29 | fef378d | 2013-06-21 18:29:21 -0700 | [diff] [blame] | 119 | <scope>compile</scope> |
| 120 | </dependency> |
ramangrover29 | ae85a1d | 2015-06-26 17:26:05 -0700 | [diff] [blame] | 121 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame^] | 122 | <groupId>org.apache.asterix</groupId> |
ramangrover29 | ae85a1d | 2015-06-26 17:26:05 -0700 | [diff] [blame] | 123 | <artifactId>asterix-transactions</artifactId> |
| 124 | <version>0.8.7-SNAPSHOT</version> |
| 125 | <scope>compile</scope> |
| 126 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 127 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame^] | 128 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 129 | <artifactId>algebricks-compiler</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 130 | </dependency> |
| 131 | <dependency> |
| 132 | <groupId>org.json</groupId> |
| 133 | <artifactId>json</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 134 | </dependency> |
| 135 | </dependencies> |
| 136 | </project> |