blob: 71dbae904c8f30221a8f8d46fa36a85435a17d38 [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>
zheilbrone631d6e2013-04-05 22:26:36 +000092 <pluginExecution>
93 <pluginExecutionFilter>
94 <groupId>
95 org.codehaus.mojo
96 </groupId>
97 <artifactId>
98 build-helper-maven-plugin
99 </artifactId>
100 <versionRange>
101 [1.7,)
102 </versionRange>
103 <goals>
104 <goal>add-source</goal>
105 </goals>
106 </pluginExecutionFilter>
107 <action>
108 <ignore></ignore>
109 </action>
110 </pluginExecution>
diegogiorgini@gmail.com2de6d342013-02-16 02:41:45 +0000111 </pluginExecutions>
112 </lifecycleMappingMetadata>
113 </configuration>
114 </plugin>
115 </plugins>
116 </pluginManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000117 </build>
118
119 <dependencies>
120 <dependency>
121 <groupId>edu.uci.ics.asterix</groupId>
122 <artifactId>asterix-om</artifactId>
123 <version>0.0.4-SNAPSHOT</version>
124 <scope>compile</scope>
125 </dependency>
126 <dependency>
127 <groupId>edu.uci.ics.fuzzyjoin</groupId>
128 <artifactId>fuzzyjoin-core</artifactId>
129 <version>0.0.3</version>
130 <scope>compile</scope>
131 </dependency>
132 <dependency>
133 <groupId>edu.uci.ics.hyracks</groupId>
jarodwen5a028142012-09-06 04:26:52 +0000134 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000135 </dependency>
136 <dependency>
jarodwen5a028142012-09-06 04:26:52 +0000137 <groupId>edu.uci.ics.asterix</groupId>
138 <artifactId>asterix-transactions</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000139 <version>0.0.4-SNAPSHOT</version>
140 <scope>compile</scope>
141 </dependency>
142 <dependency>
jarodwen5a028142012-09-06 04:26:52 +0000143 <groupId>org.twitter4j</groupId>
144 <artifactId>twitter4j-core</artifactId>
145 <version>2.2.3</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000146 </dependency>
147 <dependency>
jarodwen5a028142012-09-06 04:26:52 +0000148 <groupId>org.apache.hadoop</groupId>
149 <artifactId>hadoop-core</artifactId>
150 <version>0.20.2</version>
151 <type>jar</type>
152 <scope>compile</scope>
vinayakb38b7ca42012-03-05 05:44:15 +0000153 </dependency>
zheilbron3c686d52012-09-20 03:40:02 +0000154 <dependency>
155 <groupId>edu.uci.ics.hyracks</groupId>
156 <artifactId>hyracks-api</artifactId>
zheilbron3c686d52012-09-20 03:40:02 +0000157 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000158 </dependencies>
159
160</project>
161