blob: a56f7321b8f290fbd457d759c325da1549e0e729 [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>
19 <source>1.6</source>
20 <target>1.6</target>
21 </configuration>
22 </plugin>
diegogiorgini@gmail.com2de6d342013-02-16 02:41:45 +000023 <plugin>
24 <groupId>edu.uci.ics.asterix</groupId>
25 <artifactId>lexer-generator-maven-plugin</artifactId>
26 <version>0.1</version>
27 <configuration>
28 <grammarFile>src/main/resources/adm.grammar</grammarFile>
29 <outputDir>${project.build.directory}/generated-sources/edu/uci/ics/asterix/runtime/operators/file/adm</outputDir>
30 </configuration>
31 <executions>
32 <execution>
33 <id>generate-lexer</id>
34 <phase>generate-sources</phase>
35 <goals>
36 <goal>generate-lexer</goal>
37 </goals>
38 </execution>
39 </executions>
40 </plugin>
41 <plugin>
42 <groupId>org.codehaus.mojo</groupId>
43 <artifactId>build-helper-maven-plugin</artifactId>
44 <executions>
45 <execution>
46 <id>add-source</id>
47 <phase>generate-sources</phase>
48 <goals>
49 <goal>add-source</goal>
50 </goals>
51 <configuration>
52 <sources>
53 <source>${project.build.directory}/generated-sources/</source>
54 </sources>
55 </configuration>
56 </execution>
57 </executions>
58 </plugin>
59 </plugins>
60 <pluginManagement>
61 <plugins>
62 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
63 <plugin>
64 <groupId>org.eclipse.m2e</groupId>
65 <artifactId>lifecycle-mapping</artifactId>
66 <version>1.0.0</version>
67 <configuration>
68 <lifecycleMappingMetadata>
69 <pluginExecutions>
70 <pluginExecution>
71 <pluginExecutionFilter>
72 <groupId>
73 edu.uci.ics.asterix
74 </groupId>
75 <artifactId>
76 lexer-generator-maven-plugin
77 </artifactId>
78 <versionRange>
79 [0.1,)
80 </versionRange>
81 <goals>
82 <goal>generate-lexer</goal>
83 </goals>
84 </pluginExecutionFilter>
85 <action>
86 <execute>
87 <runOnIncremental>false</runOnIncremental>
88 </execute>
89 </action>
90 </pluginExecution>
91 </pluginExecutions>
92 </lifecycleMappingMetadata>
93 </configuration>
94 </plugin>
95 </plugins>
96 </pluginManagement>
vinayakb38b7ca42012-03-05 05:44:15 +000097 </build>
98
99 <dependencies>
100 <dependency>
101 <groupId>edu.uci.ics.asterix</groupId>
102 <artifactId>asterix-om</artifactId>
103 <version>0.0.4-SNAPSHOT</version>
104 <scope>compile</scope>
105 </dependency>
106 <dependency>
107 <groupId>edu.uci.ics.fuzzyjoin</groupId>
108 <artifactId>fuzzyjoin-core</artifactId>
109 <version>0.0.3</version>
110 <scope>compile</scope>
111 </dependency>
112 <dependency>
113 <groupId>edu.uci.ics.hyracks</groupId>
jarodwen5a028142012-09-06 04:26:52 +0000114 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000115 </dependency>
116 <dependency>
jarodwen5a028142012-09-06 04:26:52 +0000117 <groupId>edu.uci.ics.asterix</groupId>
118 <artifactId>asterix-transactions</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000119 <version>0.0.4-SNAPSHOT</version>
120 <scope>compile</scope>
121 </dependency>
122 <dependency>
jarodwen5a028142012-09-06 04:26:52 +0000123 <groupId>org.twitter4j</groupId>
124 <artifactId>twitter4j-core</artifactId>
125 <version>2.2.3</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000126 </dependency>
127 <dependency>
jarodwen5a028142012-09-06 04:26:52 +0000128 <groupId>org.apache.hadoop</groupId>
129 <artifactId>hadoop-core</artifactId>
130 <version>0.20.2</version>
131 <type>jar</type>
132 <scope>compile</scope>
vinayakb38b7ca42012-03-05 05:44:15 +0000133 </dependency>
134 </dependencies>
135
136</project>
137