blob: 2713dd994638195d362503a961ce4f614c1e8f19 [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 Maxon4e6a9232015-10-05 12:46:37 -070024 <version>0.8.8-SNAPSHOT</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>
Ian Maxonf18bba22015-08-21 12:35:14 -070041 <groupId>org.apache.asterix</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +000042 <artifactId>lexer-generator-maven-plugin</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -070043 <version>0.8.8-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +000044 <configuration>
45 <grammarFile>src/main/resources/adm.grammar</grammarFile>
Ian Maxon928bbd12015-09-14 17:12:48 -070046 <outputDir>${project.build.directory}/generated-sources/org/apache/asterix/runtime/operators/file/adm</outputDir>
vinayakb5ee049d2013-04-06 21:21:29 +000047 </configuration>
48 <executions>
49 <execution>
50 <id>generate-lexer</id>
51 <phase>generate-sources</phase>
52 <goals>
53 <goal>generate-lexer</goal>
54 </goals>
55 </execution>
56 </executions>
57 </plugin>
58 <plugin>
59 <groupId>org.codehaus.mojo</groupId>
60 <artifactId>build-helper-maven-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070061 <version>1.9</version>
vinayakb5ee049d2013-04-06 21:21:29 +000062 <executions>
63 <execution>
64 <id>add-source</id>
65 <phase>generate-sources</phase>
66 <goals>
67 <goal>add-source</goal>
68 </goals>
69 <configuration>
70 <sources>
71 <source>${project.build.directory}/generated-sources/</source>
72 </sources>
73 </configuration>
74 </execution>
75 </executions>
76 </plugin>
77 </plugins>
78 <pluginManagement>
79 <plugins>
80 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
81 <plugin>
82 <groupId>org.eclipse.m2e</groupId>
83 <artifactId>lifecycle-mapping</artifactId>
84 <version>1.0.0</version>
85 <configuration>
86 <lifecycleMappingMetadata>
87 <pluginExecutions>
88 <pluginExecution>
89 <pluginExecutionFilter>
90 <groupId>
Ian Maxonf18bba22015-08-21 12:35:14 -070091 org.apache.asterix
vinayakb5ee049d2013-04-06 21:21:29 +000092 </groupId>
93 <artifactId>
94 lexer-generator-maven-plugin
95 </artifactId>
96 <versionRange>
97 [0.1,)
98 </versionRange>
99 <goals>
100 <goal>generate-lexer</goal>
101 </goals>
102 </pluginExecutionFilter>
103 <action>
104 <execute>
105 <runOnIncremental>false</runOnIncremental>
106 </execute>
107 </action>
108 </pluginExecution>
109 <pluginExecution>
110 <pluginExecutionFilter>
111 <groupId>
112 org.codehaus.mojo
113 </groupId>
114 <artifactId>
115 build-helper-maven-plugin
116 </artifactId>
117 <versionRange>
118 [1.7,)
119 </versionRange>
120 <goals>
121 <goal>add-source</goal>
122 </goals>
123 </pluginExecutionFilter>
124 <action>
vinayakb8a1a7182013-04-07 01:45:00 +0000125 <ignore />
vinayakb5ee049d2013-04-06 21:21:29 +0000126 </action>
127 </pluginExecution>
128 </pluginExecutions>
129 </lifecycleMappingMetadata>
130 </configuration>
131 </plugin>
132 </plugins>
133 </pluginManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000134 </build>
135
136 <dependencies>
137 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700138 <groupId>org.apache.asterix</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +0000139 <artifactId>asterix-om</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700140 <version>0.8.8-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000141 <scope>compile</scope>
142 </dependency>
143 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700144 <groupId>org.apache.asterix</groupId>
icetindil82838a22013-10-11 16:41:18 -0700145 <artifactId>asterix-fuzzyjoin</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700146 <version>0.8.8-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000147 <scope>compile</scope>
148 </dependency>
149 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700150 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000151 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000152 </dependency>
153 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700154 <groupId>org.apache.asterix</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000155 <artifactId>asterix-transactions</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700156 <version>0.8.8-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000157 <scope>compile</scope>
158 </dependency>
159 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000160 <groupId>org.twitter4j</groupId>
161 <artifactId>twitter4j-core</artifactId>
Heri Ramampiarod03d6732015-10-16 08:52:18 +0200162 <version>[4.0,)</version>
163 </dependency>
164 <dependency>
165 <groupId>org.twitter4j</groupId>
166 <artifactId>twitter4j-stream</artifactId>
167 <version>[4.0,)</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000168 </dependency>
169 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000170 <groupId>org.apache.hadoop</groupId>
Ian18997ce2014-09-22 16:14:39 -0700171 <artifactId>hadoop-client</artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +0000172 <type>jar</type>
173 <scope>compile</scope>
vinayakb38b7ca42012-03-05 05:44:15 +0000174 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000175 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700176 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000177 <artifactId>hyracks-api</artifactId>
178 </dependency>
Yingyi Bu9a554a72015-12-01 20:45:50 -0800179 <dependency>
180 <groupId>com.e-movimento.tinytools</groupId>
181 <artifactId>privilegedaccessor</artifactId>
182 <version>1.2.2</version>
183 <scope>test</scope>
184 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000185 </dependencies>
186
187</project>