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> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 20 | <version>0.8.1-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-runtime</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 23 | |
| 24 | |
| 25 | <build> |
| 26 | <plugins> |
| 27 | <plugin> |
| 28 | <groupId>org.apache.maven.plugins</groupId> |
| 29 | <artifactId>maven-compiler-plugin</artifactId> |
| 30 | <version>2.0.2</version> |
| 31 | <configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 32 | <source>1.7</source> |
| 33 | <target>1.7</target> |
| 34 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 35 | </configuration> |
| 36 | </plugin> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 37 | <plugin> |
| 38 | <groupId>edu.uci.ics.asterix</groupId> |
| 39 | <artifactId>lexer-generator-maven-plugin</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 40 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 41 | <configuration> |
| 42 | <grammarFile>src/main/resources/adm.grammar</grammarFile> |
| 43 | <outputDir>${project.build.directory}/generated-sources/edu/uci/ics/asterix/runtime/operators/file/adm</outputDir> |
| 44 | </configuration> |
| 45 | <executions> |
| 46 | <execution> |
| 47 | <id>generate-lexer</id> |
| 48 | <phase>generate-sources</phase> |
| 49 | <goals> |
| 50 | <goal>generate-lexer</goal> |
| 51 | </goals> |
| 52 | </execution> |
| 53 | </executions> |
| 54 | </plugin> |
| 55 | <plugin> |
| 56 | <groupId>org.codehaus.mojo</groupId> |
| 57 | <artifactId>build-helper-maven-plugin</artifactId> |
| 58 | <executions> |
| 59 | <execution> |
| 60 | <id>add-source</id> |
| 61 | <phase>generate-sources</phase> |
| 62 | <goals> |
| 63 | <goal>add-source</goal> |
| 64 | </goals> |
| 65 | <configuration> |
| 66 | <sources> |
| 67 | <source>${project.build.directory}/generated-sources/</source> |
| 68 | </sources> |
| 69 | </configuration> |
| 70 | </execution> |
| 71 | </executions> |
| 72 | </plugin> |
| 73 | </plugins> |
| 74 | <pluginManagement> |
| 75 | <plugins> |
| 76 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 77 | <plugin> |
| 78 | <groupId>org.eclipse.m2e</groupId> |
| 79 | <artifactId>lifecycle-mapping</artifactId> |
| 80 | <version>1.0.0</version> |
| 81 | <configuration> |
| 82 | <lifecycleMappingMetadata> |
| 83 | <pluginExecutions> |
| 84 | <pluginExecution> |
| 85 | <pluginExecutionFilter> |
| 86 | <groupId> |
| 87 | edu.uci.ics.asterix |
| 88 | </groupId> |
| 89 | <artifactId> |
| 90 | lexer-generator-maven-plugin |
| 91 | </artifactId> |
| 92 | <versionRange> |
JArod | 003089a | 2013-06-30 12:54:39 -0700 | [diff] [blame] | 93 | [0.0,0) |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 94 | </versionRange> |
| 95 | <goals> |
| 96 | <goal>generate-lexer</goal> |
| 97 | </goals> |
| 98 | </pluginExecutionFilter> |
| 99 | <action> |
| 100 | <execute> |
| 101 | <runOnIncremental>false</runOnIncremental> |
| 102 | </execute> |
| 103 | </action> |
| 104 | </pluginExecution> |
| 105 | <pluginExecution> |
| 106 | <pluginExecutionFilter> |
| 107 | <groupId> |
| 108 | org.codehaus.mojo |
| 109 | </groupId> |
| 110 | <artifactId> |
| 111 | build-helper-maven-plugin |
| 112 | </artifactId> |
| 113 | <versionRange> |
| 114 | [1.7,) |
| 115 | </versionRange> |
| 116 | <goals> |
| 117 | <goal>add-source</goal> |
| 118 | </goals> |
| 119 | </pluginExecutionFilter> |
| 120 | <action> |
vinayakb | 8a1a718 | 2013-04-07 01:45:00 +0000 | [diff] [blame] | 121 | <ignore /> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 122 | </action> |
| 123 | </pluginExecution> |
| 124 | </pluginExecutions> |
| 125 | </lifecycleMappingMetadata> |
| 126 | </configuration> |
| 127 | </plugin> |
| 128 | </plugins> |
| 129 | </pluginManagement> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 130 | </build> |
| 131 | |
| 132 | <dependencies> |
| 133 | <dependency> |
| 134 | <groupId>edu.uci.ics.asterix</groupId> |
| 135 | <artifactId>asterix-om</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 136 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 137 | <scope>compile</scope> |
| 138 | </dependency> |
| 139 | <dependency> |
| 140 | <groupId>edu.uci.ics.fuzzyjoin</groupId> |
| 141 | <artifactId>fuzzyjoin-core</artifactId> |
| 142 | <version>0.0.3</version> |
| 143 | <scope>compile</scope> |
| 144 | </dependency> |
| 145 | <dependency> |
| 146 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 147 | <artifactId>hyracks-storage-am-btree</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 148 | </dependency> |
| 149 | <dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 150 | <groupId>edu.uci.ics.asterix</groupId> |
| 151 | <artifactId>asterix-transactions</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 152 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 153 | <scope>compile</scope> |
| 154 | </dependency> |
| 155 | <dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 156 | <groupId>org.twitter4j</groupId> |
| 157 | <artifactId>twitter4j-core</artifactId> |
| 158 | <version>2.2.3</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 159 | </dependency> |
| 160 | <dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 161 | <groupId>org.apache.hadoop</groupId> |
| 162 | <artifactId>hadoop-core</artifactId> |
| 163 | <version>0.20.2</version> |
| 164 | <type>jar</type> |
| 165 | <scope>compile</scope> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 166 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 167 | <dependency> |
| 168 | <groupId>edu.uci.ics.hyracks</groupId> |
| 169 | <artifactId>hyracks-api</artifactId> |
| 170 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 171 | </dependencies> |
| 172 | |
| 173 | </project> |
| 174 | |