blob: 2b1847ba99f0470d0f056e7c92a3a214ab4bb84f [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001<!--
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 !-->
vinayakb8a1a7182013-04-07 01:45:00 +000015<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 +000016 <modelVersion>4.0.0</modelVersion>
17 <parent>
18 <artifactId>asterix</artifactId>
19 <groupId>edu.uci.ics.asterix</groupId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070020 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000021 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000022 <artifactId>asterix-runtime</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000023
Ian4a816dc2014-11-26 15:46:32 -080024 <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
vinayakb38b7ca42012-03-05 05:44:15 +000033
34 <build>
35 <plugins>
36 <plugin>
37 <groupId>org.apache.maven.plugins</groupId>
38 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070039 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000040 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000041 <source>1.7</source>
42 <target>1.7</target>
43 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000044 </configuration>
45 </plugin>
vinayakb5ee049d2013-04-06 21:21:29 +000046 <plugin>
47 <groupId>edu.uci.ics.asterix</groupId>
48 <artifactId>lexer-generator-maven-plugin</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070049 <version>0.8.7-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +000050 <configuration>
51 <grammarFile>src/main/resources/adm.grammar</grammarFile>
52 <outputDir>${project.build.directory}/generated-sources/edu/uci/ics/asterix/runtime/operators/file/adm</outputDir>
53 </configuration>
54 <executions>
55 <execution>
56 <id>generate-lexer</id>
57 <phase>generate-sources</phase>
58 <goals>
59 <goal>generate-lexer</goal>
60 </goals>
61 </execution>
62 </executions>
63 </plugin>
64 <plugin>
65 <groupId>org.codehaus.mojo</groupId>
66 <artifactId>build-helper-maven-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070067 <version>1.9</version>
vinayakb5ee049d2013-04-06 21:21:29 +000068 <executions>
69 <execution>
70 <id>add-source</id>
71 <phase>generate-sources</phase>
72 <goals>
73 <goal>add-source</goal>
74 </goals>
75 <configuration>
76 <sources>
77 <source>${project.build.directory}/generated-sources/</source>
78 </sources>
79 </configuration>
80 </execution>
81 </executions>
82 </plugin>
83 </plugins>
84 <pluginManagement>
85 <plugins>
86 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
87 <plugin>
88 <groupId>org.eclipse.m2e</groupId>
89 <artifactId>lifecycle-mapping</artifactId>
90 <version>1.0.0</version>
91 <configuration>
92 <lifecycleMappingMetadata>
93 <pluginExecutions>
94 <pluginExecution>
95 <pluginExecutionFilter>
96 <groupId>
97 edu.uci.ics.asterix
98 </groupId>
99 <artifactId>
100 lexer-generator-maven-plugin
101 </artifactId>
102 <versionRange>
103 [0.1,)
104 </versionRange>
105 <goals>
106 <goal>generate-lexer</goal>
107 </goals>
108 </pluginExecutionFilter>
109 <action>
110 <execute>
111 <runOnIncremental>false</runOnIncremental>
112 </execute>
113 </action>
114 </pluginExecution>
115 <pluginExecution>
116 <pluginExecutionFilter>
117 <groupId>
118 org.codehaus.mojo
119 </groupId>
120 <artifactId>
121 build-helper-maven-plugin
122 </artifactId>
123 <versionRange>
124 [1.7,)
125 </versionRange>
126 <goals>
127 <goal>add-source</goal>
128 </goals>
129 </pluginExecutionFilter>
130 <action>
vinayakb8a1a7182013-04-07 01:45:00 +0000131 <ignore />
vinayakb5ee049d2013-04-06 21:21:29 +0000132 </action>
133 </pluginExecution>
134 </pluginExecutions>
135 </lifecycleMappingMetadata>
136 </configuration>
137 </plugin>
138 </plugins>
139 </pluginManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000140 </build>
141
142 <dependencies>
143 <dependency>
144 <groupId>edu.uci.ics.asterix</groupId>
145 <artifactId>asterix-om</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700146 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000147 <scope>compile</scope>
148 </dependency>
149 <dependency>
icetindil82838a22013-10-11 16:41:18 -0700150 <groupId>edu.uci.ics.asterix</groupId>
151 <artifactId>asterix-fuzzyjoin</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700152 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000153 <scope>compile</scope>
154 </dependency>
155 <dependency>
156 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000157 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000158 </dependency>
159 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000160 <groupId>edu.uci.ics.asterix</groupId>
161 <artifactId>asterix-transactions</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700162 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000163 <scope>compile</scope>
164 </dependency>
165 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000166 <groupId>org.twitter4j</groupId>
167 <artifactId>twitter4j-core</artifactId>
168 <version>2.2.3</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000169 </dependency>
170 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000171 <groupId>org.apache.hadoop</groupId>
Ian18997ce2014-09-22 16:14:39 -0700172 <artifactId>hadoop-client</artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +0000173 <type>jar</type>
174 <scope>compile</scope>
vinayakb38b7ca42012-03-05 05:44:15 +0000175 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000176 <dependency>
177 <groupId>edu.uci.ics.hyracks</groupId>
178 <artifactId>hyracks-api</artifactId>
179 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000180 </dependencies>
181
182</project>
183