blob: d2e3e00430dc0c51390000493267c206e83881d0 [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
24
25 <build>
26 <plugins>
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070030 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000031 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000032 <source>1.7</source>
33 <target>1.7</target>
34 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000035 </configuration>
36 </plugin>
vinayakb5ee049d2013-04-06 21:21:29 +000037 <plugin>
38 <groupId>edu.uci.ics.asterix</groupId>
39 <artifactId>lexer-generator-maven-plugin</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070040 <version>0.8.7-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +000041 <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>
Till Westmann6212c902014-07-30 15:44:59 -070058 <version>1.9</version>
vinayakb5ee049d2013-04-06 21:21:29 +000059 <executions>
60 <execution>
61 <id>add-source</id>
62 <phase>generate-sources</phase>
63 <goals>
64 <goal>add-source</goal>
65 </goals>
66 <configuration>
67 <sources>
68 <source>${project.build.directory}/generated-sources/</source>
69 </sources>
70 </configuration>
71 </execution>
72 </executions>
73 </plugin>
74 </plugins>
75 <pluginManagement>
76 <plugins>
77 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
78 <plugin>
79 <groupId>org.eclipse.m2e</groupId>
80 <artifactId>lifecycle-mapping</artifactId>
81 <version>1.0.0</version>
82 <configuration>
83 <lifecycleMappingMetadata>
84 <pluginExecutions>
85 <pluginExecution>
86 <pluginExecutionFilter>
87 <groupId>
88 edu.uci.ics.asterix
89 </groupId>
90 <artifactId>
91 lexer-generator-maven-plugin
92 </artifactId>
93 <versionRange>
94 [0.1,)
95 </versionRange>
96 <goals>
97 <goal>generate-lexer</goal>
98 </goals>
99 </pluginExecutionFilter>
100 <action>
101 <execute>
102 <runOnIncremental>false</runOnIncremental>
103 </execute>
104 </action>
105 </pluginExecution>
106 <pluginExecution>
107 <pluginExecutionFilter>
108 <groupId>
109 org.codehaus.mojo
110 </groupId>
111 <artifactId>
112 build-helper-maven-plugin
113 </artifactId>
114 <versionRange>
115 [1.7,)
116 </versionRange>
117 <goals>
118 <goal>add-source</goal>
119 </goals>
120 </pluginExecutionFilter>
121 <action>
vinayakb8a1a7182013-04-07 01:45:00 +0000122 <ignore />
vinayakb5ee049d2013-04-06 21:21:29 +0000123 </action>
124 </pluginExecution>
125 </pluginExecutions>
126 </lifecycleMappingMetadata>
127 </configuration>
128 </plugin>
129 </plugins>
130 </pluginManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000131 </build>
132
133 <dependencies>
134 <dependency>
135 <groupId>edu.uci.ics.asterix</groupId>
136 <artifactId>asterix-om</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700137 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000138 <scope>compile</scope>
139 </dependency>
140 <dependency>
icetindil82838a22013-10-11 16:41:18 -0700141 <groupId>edu.uci.ics.asterix</groupId>
142 <artifactId>asterix-fuzzyjoin</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700143 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000144 <scope>compile</scope>
145 </dependency>
146 <dependency>
147 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000148 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000149 </dependency>
150 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000151 <groupId>edu.uci.ics.asterix</groupId>
152 <artifactId>asterix-transactions</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700153 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000154 <scope>compile</scope>
155 </dependency>
156 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000157 <groupId>org.twitter4j</groupId>
158 <artifactId>twitter4j-core</artifactId>
159 <version>2.2.3</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000160 </dependency>
161 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000162 <groupId>org.apache.hadoop</groupId>
Ian18997ce2014-09-22 16:14:39 -0700163 <artifactId>hadoop-client</artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +0000164 <type>jar</type>
165 <scope>compile</scope>
vinayakb38b7ca42012-03-05 05:44:15 +0000166 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000167 <dependency>
168 <groupId>edu.uci.ics.hyracks</groupId>
169 <artifactId>hyracks-api</artifactId>
170 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000171 </dependencies>
172
173</project>
174