blob: 245f577356947789ce19d589e6b201f0740b61eb [file] [log] [blame]
jarodwen5a028142012-09-06 04:26:52 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 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 +00003 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <artifactId>asterix</artifactId>
6 <groupId>edu.uci.ics.asterix</groupId>
7 <version>0.0.4-SNAPSHOT</version>
8 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +00009 <artifactId>asterix-runtime</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000010
11
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 <version>2.0.2</version>
18 <configuration>
zheilbron5e741de2013-02-16 21:34:39 +000019 <source>1.7</source>
20 <target>1.7</target>
buyingyi8a61a182013-03-03 08:41:25 +000021 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000022 </configuration>
23 </plugin>
diegogiorgini@gmail.com2de6d342013-02-16 02:41:45 +000024 <plugin>
25 <groupId>edu.uci.ics.asterix</groupId>
26 <artifactId>lexer-generator-maven-plugin</artifactId>
27 <version>0.1</version>
28 <configuration>
29 <grammarFile>src/main/resources/adm.grammar</grammarFile>
30 <outputDir>${project.build.directory}/generated-sources/edu/uci/ics/asterix/runtime/operators/file/adm</outputDir>
31 </configuration>
32 <executions>
33 <execution>
34 <id>generate-lexer</id>
35 <phase>generate-sources</phase>
36 <goals>
37 <goal>generate-lexer</goal>
38 </goals>
39 </execution>
40 </executions>
41 </plugin>
42 <plugin>
43 <groupId>org.codehaus.mojo</groupId>
44 <artifactId>build-helper-maven-plugin</artifactId>
45 <executions>
46 <execution>
47 <id>add-source</id>
48 <phase>generate-sources</phase>
49 <goals>
50 <goal>add-source</goal>
51 </goals>
52 <configuration>
53 <sources>
54 <source>${project.build.directory}/generated-sources/</source>
55 </sources>
56 </configuration>
57 </execution>
58 </executions>
59 </plugin>
60 </plugins>
61 <pluginManagement>
62 <plugins>
63 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
64 <plugin>
65 <groupId>org.eclipse.m2e</groupId>
66 <artifactId>lifecycle-mapping</artifactId>
67 <version>1.0.0</version>
68 <configuration>
69 <lifecycleMappingMetadata>
70 <pluginExecutions>
71 <pluginExecution>
72 <pluginExecutionFilter>
73 <groupId>
74 edu.uci.ics.asterix
75 </groupId>
76 <artifactId>
77 lexer-generator-maven-plugin
78 </artifactId>
79 <versionRange>
80 [0.1,)
81 </versionRange>
82 <goals>
83 <goal>generate-lexer</goal>
84 </goals>
85 </pluginExecutionFilter>
86 <action>
87 <execute>
88 <runOnIncremental>false</runOnIncremental>
89 </execute>
90 </action>
91 </pluginExecution>
92 </pluginExecutions>
93 </lifecycleMappingMetadata>
94 </configuration>
95 </plugin>
96 </plugins>
97 </pluginManagement>
vinayakb38b7ca42012-03-05 05:44:15 +000098 </build>
99
100 <dependencies>
101 <dependency>
102 <groupId>edu.uci.ics.asterix</groupId>
103 <artifactId>asterix-om</artifactId>
104 <version>0.0.4-SNAPSHOT</version>
105 <scope>compile</scope>
106 </dependency>
107 <dependency>
108 <groupId>edu.uci.ics.fuzzyjoin</groupId>
109 <artifactId>fuzzyjoin-core</artifactId>
110 <version>0.0.3</version>
111 <scope>compile</scope>
112 </dependency>
113 <dependency>
114 <groupId>edu.uci.ics.hyracks</groupId>
jarodwen5a028142012-09-06 04:26:52 +0000115 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000116 </dependency>
117 <dependency>
jarodwen5a028142012-09-06 04:26:52 +0000118 <groupId>edu.uci.ics.asterix</groupId>
119 <artifactId>asterix-transactions</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000120 <version>0.0.4-SNAPSHOT</version>
121 <scope>compile</scope>
122 </dependency>
123 <dependency>
jarodwen5a028142012-09-06 04:26:52 +0000124 <groupId>org.twitter4j</groupId>
125 <artifactId>twitter4j-core</artifactId>
126 <version>2.2.3</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000127 </dependency>
128 <dependency>
jarodwen5a028142012-09-06 04:26:52 +0000129 <groupId>org.apache.hadoop</groupId>
130 <artifactId>hadoop-core</artifactId>
131 <version>0.20.2</version>
132 <type>jar</type>
133 <scope>compile</scope>
vinayakb38b7ca42012-03-05 05:44:15 +0000134 </dependency>
135 </dependencies>
136
137</project>
138