blob: c3179da9cfb30aef2f862bb1c99b27985322d178 [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
Ian Maxond8857792015-09-11 14:19:53 -07002 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
18 !-->
19
vinayakb0c860392012-10-06 18:47:20 +000020<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/maven-v4_0_0.xsd">
Chris Hilleryb531ce32014-02-20 16:39:25 -080021 <modelVersion>4.0.0</modelVersion>
22 <artifactId>piglet-example</artifactId>
23 <name>piglet-example</name>
Michael Blowb4c1fb02016-05-09 15:41:00 -070024 <parent>
Ian Maxone915e8c2015-07-01 17:03:31 -070025 <groupId>org.apache.hyracks</groupId>
Chris Hilleryb531ce32014-02-20 16:39:25 -080026 <artifactId>algebricks-examples</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -080027 <version>0.2.18-SNAPSHOT</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -080028 </parent>
vinayakb0c860392012-10-06 18:47:20 +000029
Ian Maxon9e37c962015-11-25 07:38:37 -080030 <properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070031 <root.dir>${basedir}/../../..</root.dir>
Ian Maxon9e37c962015-11-25 07:38:37 -080032 </properties>
33
Chris Hilleryb531ce32014-02-20 16:39:25 -080034 <build>
35 <plugins>
36 <plugin>
Chris Hilleryb531ce32014-02-20 16:39:25 -080037 <groupId>org.codehaus.mojo</groupId>
38 <artifactId>javacc-maven-plugin</artifactId>
39 <version>2.6</version>
40 <executions>
41 <execution>
42 <id>javacc</id>
43 <goals>
44 <goal>javacc</goal>
45 </goals>
46 <configuration>
47 <isStatic>false</isStatic>
48 </configuration>
49 </execution>
50 </executions>
51 </plugin>
52 <plugin>
53 <groupId>org.codehaus.mojo</groupId>
54 <artifactId>build-helper-maven-plugin</artifactId>
Jianfeng Jiaa63d0f72016-02-13 10:06:24 -080055 <version>1.10</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -080056 <executions>
57 <execution>
58 <id>add-source</id>
59 <phase>generate-sources</phase>
60 <goals>
61 <goal>add-source</goal>
62 </goals>
63 <configuration>
64 <sources>
65 <source>${project.build.directory}/generated-sources/javacc/</source>
66 </sources>
67 </configuration>
68 </execution>
69 </executions>
70 </plugin>
71 </plugins>
72 <pluginManagement>
73 <plugins>
74 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
75 <plugin>
76 <groupId>org.eclipse.m2e</groupId>
77 <artifactId>lifecycle-mapping</artifactId>
78 <version>1.0.0</version>
79 <configuration>
80 <lifecycleMappingMetadata>
81 <pluginExecutions>
82 <pluginExecution>
83 <pluginExecutionFilter>
84 <groupId>
85 org.codehaus.mojo
86 </groupId>
87 <artifactId>
88 javacc-maven-plugin
89 </artifactId>
90 <versionRange>
91 [2.6,)
92 </versionRange>
93 <goals>
94 <goal>javacc</goal>
95 </goals>
96 </pluginExecutionFilter>
97 <action>
Michael Blow380b0a22016-08-02 13:05:52 -040098 <ignore />
Chris Hilleryb531ce32014-02-20 16:39:25 -080099 </action>
100 </pluginExecution>
101 </pluginExecutions>
102 </lifecycleMappingMetadata>
103 </configuration>
104 </plugin>
105 </plugins>
106 </pluginManagement>
107 </build>
108 <dependencies>
109 <dependency>
110 <!-- Dependency management inherited from top-level hyracks -->
111 <groupId>junit</groupId>
112 <artifactId>junit</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400113 <scope>test</scope>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800114 </dependency>
115 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700116 <groupId>org.apache.hyracks</groupId>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800117 <artifactId>algebricks-compiler</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400118 <version>${project.version}</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800119 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700120 <dependency>
121 <groupId>org.apache.hyracks</groupId>
122 <artifactId>hyracks-util</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400123 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700124 </dependency>
Michael Blowba358122016-10-13 19:56:03 -0400125 <dependency>
126 <groupId>org.apache.hyracks</groupId>
127 <artifactId>algebricks-common</artifactId>
128 <version>${project.version}</version>
129 </dependency>
130 <dependency>
131 <groupId>org.apache.hyracks</groupId>
132 <artifactId>hyracks-dataflow-common</artifactId>
133 <version>${project.version}</version>
134 </dependency>
135 <dependency>
136 <groupId>org.apache.hyracks</groupId>
137 <artifactId>algebricks-rewriter</artifactId>
138 <version>${project.version}</version>
139 </dependency>
140 <dependency>
141 <groupId>org.apache.hyracks</groupId>
142 <artifactId>algebricks-runtime</artifactId>
143 <version>${project.version}</version>
144 </dependency>
145 <dependency>
146 <groupId>org.apache.hyracks</groupId>
147 <artifactId>algebricks-data</artifactId>
148 <version>${project.version}</version>
149 </dependency>
150 <dependency>
151 <groupId>org.apache.hyracks</groupId>
152 <artifactId>hyracks-api</artifactId>
153 <version>${project.version}</version>
154 </dependency>
155 <dependency>
156 <groupId>org.apache.hyracks</groupId>
157 <artifactId>hyracks-dataflow-std</artifactId>
158 <version>${project.version}</version>
159 </dependency>
160 <dependency>
161 <groupId>org.apache.hyracks</groupId>
162 <artifactId>hyracks-data-std</artifactId>
163 <version>${project.version}</version>
164 </dependency>
165 <dependency>
166 <groupId>org.apache.commons</groupId>
167 <artifactId>commons-lang3</artifactId>
Michael Blowfbccee62016-10-26 12:18:30 -0400168 <version>3.5</version>
Michael Blowba358122016-10-13 19:56:03 -0400169 </dependency>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800170 </dependencies>
vinayakb0c860392012-10-06 18:47:20 +0000171</project>