blob: 4a3ece9a2b012337f51c0064f08e767f110ec8e4 [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>
Vinayak Borkarb27deb22013-06-06 00:31:52 -070020 <version>0.8.1-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>
30 <version>2.0.2</version>
31 <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>
Vinayak Borkarb27deb22013-06-06 00:31:52 -070040 <version>0.8.1-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>
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>
JArodc15b8432013-08-02 03:47:23 -070093 [0.1,)
vinayakb5ee049d2013-04-06 21:21:29 +000094 </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>
vinayakb8a1a7182013-04-07 01:45:00 +0000121 <ignore />
vinayakb5ee049d2013-04-06 21:21:29 +0000122 </action>
123 </pluginExecution>
124 </pluginExecutions>
125 </lifecycleMappingMetadata>
126 </configuration>
127 </plugin>
128 </plugins>
129 </pluginManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000130 </build>
131
132 <dependencies>
133 <dependency>
134 <groupId>edu.uci.ics.asterix</groupId>
135 <artifactId>asterix-om</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700136 <version>0.8.1-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000137 <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>
vinayakb5ee049d2013-04-06 21:21:29 +0000147 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000148 </dependency>
149 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000150 <groupId>edu.uci.ics.asterix</groupId>
151 <artifactId>asterix-transactions</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700152 <version>0.8.1-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000153 <scope>compile</scope>
154 </dependency>
155 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000156 <groupId>org.twitter4j</groupId>
157 <artifactId>twitter4j-core</artifactId>
158 <version>2.2.3</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000159 </dependency>
160 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000161 <groupId>org.apache.hadoop</groupId>
162 <artifactId>hadoop-core</artifactId>
163 <version>0.20.2</version>
164 <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