blob: 2a61330d5fb2e3f13f8da31474502179f093723f [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001<!--
Ian Maxon928bbd12015-09-14 17:12:48 -07002 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
Till Westmannea8ab392013-06-05 15:17:08 -070018 !-->
vinayakb8a1a7182013-04-07 01:45:00 +000019<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">
vinayakb38b7ca42012-03-05 05:44:15 +000020 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <artifactId>asterix</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070023 <groupId>org.apache.asterix</groupId>
Ian Maxon19931122015-09-30 23:18:01 -070024 <version>0.8.7-incubating</version>
vinayakb38b7ca42012-03-05 05:44:15 +000025 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000026 <artifactId>asterix-runtime</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000027
Ian4a816dc2014-11-26 15:46:32 -080028 <licenses>
29 <license>
30 <name>Apache License, Version 2.0</name>
31 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
32 <distribution>repo</distribution>
33 <comments>A business-friendly OSS license</comments>
34 </license>
35 </licenses>
36
vinayakb38b7ca42012-03-05 05:44:15 +000037
38 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070043 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000044 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000045 <source>1.7</source>
46 <target>1.7</target>
47 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000048 </configuration>
49 </plugin>
vinayakb5ee049d2013-04-06 21:21:29 +000050 <plugin>
Ian Maxonf18bba22015-08-21 12:35:14 -070051 <groupId>org.apache.asterix</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +000052 <artifactId>lexer-generator-maven-plugin</artifactId>
Ian Maxon19931122015-09-30 23:18:01 -070053 <version>0.8.7-incubating</version>
vinayakb5ee049d2013-04-06 21:21:29 +000054 <configuration>
55 <grammarFile>src/main/resources/adm.grammar</grammarFile>
Ian Maxon928bbd12015-09-14 17:12:48 -070056 <outputDir>${project.build.directory}/generated-sources/org/apache/asterix/runtime/operators/file/adm</outputDir>
vinayakb5ee049d2013-04-06 21:21:29 +000057 </configuration>
58 <executions>
59 <execution>
60 <id>generate-lexer</id>
61 <phase>generate-sources</phase>
62 <goals>
63 <goal>generate-lexer</goal>
64 </goals>
65 </execution>
66 </executions>
67 </plugin>
68 <plugin>
69 <groupId>org.codehaus.mojo</groupId>
70 <artifactId>build-helper-maven-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070071 <version>1.9</version>
vinayakb5ee049d2013-04-06 21:21:29 +000072 <executions>
73 <execution>
74 <id>add-source</id>
75 <phase>generate-sources</phase>
76 <goals>
77 <goal>add-source</goal>
78 </goals>
79 <configuration>
80 <sources>
81 <source>${project.build.directory}/generated-sources/</source>
82 </sources>
83 </configuration>
84 </execution>
85 </executions>
86 </plugin>
87 </plugins>
88 <pluginManagement>
89 <plugins>
90 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
91 <plugin>
92 <groupId>org.eclipse.m2e</groupId>
93 <artifactId>lifecycle-mapping</artifactId>
94 <version>1.0.0</version>
95 <configuration>
96 <lifecycleMappingMetadata>
97 <pluginExecutions>
98 <pluginExecution>
99 <pluginExecutionFilter>
100 <groupId>
Ian Maxonf18bba22015-08-21 12:35:14 -0700101 org.apache.asterix
vinayakb5ee049d2013-04-06 21:21:29 +0000102 </groupId>
103 <artifactId>
104 lexer-generator-maven-plugin
105 </artifactId>
106 <versionRange>
107 [0.1,)
108 </versionRange>
109 <goals>
110 <goal>generate-lexer</goal>
111 </goals>
112 </pluginExecutionFilter>
113 <action>
114 <execute>
115 <runOnIncremental>false</runOnIncremental>
116 </execute>
117 </action>
118 </pluginExecution>
119 <pluginExecution>
120 <pluginExecutionFilter>
121 <groupId>
122 org.codehaus.mojo
123 </groupId>
124 <artifactId>
125 build-helper-maven-plugin
126 </artifactId>
127 <versionRange>
128 [1.7,)
129 </versionRange>
130 <goals>
131 <goal>add-source</goal>
132 </goals>
133 </pluginExecutionFilter>
134 <action>
vinayakb8a1a7182013-04-07 01:45:00 +0000135 <ignore />
vinayakb5ee049d2013-04-06 21:21:29 +0000136 </action>
137 </pluginExecution>
138 </pluginExecutions>
139 </lifecycleMappingMetadata>
140 </configuration>
141 </plugin>
142 </plugins>
143 </pluginManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000144 </build>
145
146 <dependencies>
147 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700148 <groupId>org.apache.asterix</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +0000149 <artifactId>asterix-om</artifactId>
Ian Maxon19931122015-09-30 23:18:01 -0700150 <version>0.8.7-incubating</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000151 <scope>compile</scope>
152 </dependency>
153 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700154 <groupId>org.apache.asterix</groupId>
icetindil82838a22013-10-11 16:41:18 -0700155 <artifactId>asterix-fuzzyjoin</artifactId>
Ian Maxon19931122015-09-30 23:18:01 -0700156 <version>0.8.7-incubating</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000157 <scope>compile</scope>
158 </dependency>
159 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700160 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000161 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000162 </dependency>
163 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700164 <groupId>org.apache.asterix</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000165 <artifactId>asterix-transactions</artifactId>
Ian Maxon19931122015-09-30 23:18:01 -0700166 <version>0.8.7-incubating</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000167 <scope>compile</scope>
168 </dependency>
169 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000170 <groupId>org.twitter4j</groupId>
171 <artifactId>twitter4j-core</artifactId>
172 <version>2.2.3</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000173 </dependency>
174 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000175 <groupId>org.apache.hadoop</groupId>
Ian18997ce2014-09-22 16:14:39 -0700176 <artifactId>hadoop-client</artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +0000177 <type>jar</type>
178 <scope>compile</scope>
vinayakb38b7ca42012-03-05 05:44:15 +0000179 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000180 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700181 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000182 <artifactId>hyracks-api</artifactId>
183 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000184 </dependencies>
185
186</project>
187