blob: 482745588cf9727db3114c3b92cff2043a181779 [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>
AsterixDB Jenkins92a9a652017-08-07 17:23:07 -070027 <version>0.3.3-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>
55 <executions>
56 <execution>
57 <id>add-source</id>
58 <phase>generate-sources</phase>
59 <goals>
60 <goal>add-source</goal>
61 </goals>
62 <configuration>
63 <sources>
64 <source>${project.build.directory}/generated-sources/javacc/</source>
65 </sources>
66 </configuration>
67 </execution>
68 </executions>
69 </plugin>
70 </plugins>
71 <pluginManagement>
72 <plugins>
73 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
74 <plugin>
75 <groupId>org.eclipse.m2e</groupId>
76 <artifactId>lifecycle-mapping</artifactId>
77 <version>1.0.0</version>
78 <configuration>
79 <lifecycleMappingMetadata>
80 <pluginExecutions>
81 <pluginExecution>
82 <pluginExecutionFilter>
83 <groupId>
84 org.codehaus.mojo
85 </groupId>
86 <artifactId>
87 javacc-maven-plugin
88 </artifactId>
89 <versionRange>
90 [2.6,)
91 </versionRange>
92 <goals>
93 <goal>javacc</goal>
94 </goals>
95 </pluginExecutionFilter>
96 <action>
Michael Blow380b0a22016-08-02 13:05:52 -040097 <ignore />
Chris Hilleryb531ce32014-02-20 16:39:25 -080098 </action>
99 </pluginExecution>
100 </pluginExecutions>
101 </lifecycleMappingMetadata>
102 </configuration>
103 </plugin>
104 </plugins>
105 </pluginManagement>
106 </build>
107 <dependencies>
108 <dependency>
109 <!-- Dependency management inherited from top-level hyracks -->
110 <groupId>junit</groupId>
111 <artifactId>junit</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400112 <scope>test</scope>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800113 </dependency>
114 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700115 <groupId>org.apache.hyracks</groupId>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800116 <artifactId>algebricks-compiler</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400117 <version>${project.version}</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800118 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700119 <dependency>
120 <groupId>org.apache.hyracks</groupId>
121 <artifactId>hyracks-util</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400122 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700123 </dependency>
Michael Blowba358122016-10-13 19:56:03 -0400124 <dependency>
125 <groupId>org.apache.hyracks</groupId>
126 <artifactId>algebricks-common</artifactId>
127 <version>${project.version}</version>
128 </dependency>
129 <dependency>
130 <groupId>org.apache.hyracks</groupId>
131 <artifactId>hyracks-dataflow-common</artifactId>
132 <version>${project.version}</version>
133 </dependency>
134 <dependency>
135 <groupId>org.apache.hyracks</groupId>
136 <artifactId>algebricks-rewriter</artifactId>
137 <version>${project.version}</version>
138 </dependency>
139 <dependency>
140 <groupId>org.apache.hyracks</groupId>
141 <artifactId>algebricks-runtime</artifactId>
142 <version>${project.version}</version>
143 </dependency>
144 <dependency>
145 <groupId>org.apache.hyracks</groupId>
146 <artifactId>algebricks-data</artifactId>
147 <version>${project.version}</version>
148 </dependency>
149 <dependency>
150 <groupId>org.apache.hyracks</groupId>
151 <artifactId>hyracks-api</artifactId>
152 <version>${project.version}</version>
153 </dependency>
154 <dependency>
155 <groupId>org.apache.hyracks</groupId>
156 <artifactId>hyracks-dataflow-std</artifactId>
157 <version>${project.version}</version>
158 </dependency>
159 <dependency>
160 <groupId>org.apache.hyracks</groupId>
161 <artifactId>hyracks-data-std</artifactId>
162 <version>${project.version}</version>
163 </dependency>
164 <dependency>
165 <groupId>org.apache.commons</groupId>
166 <artifactId>commons-lang3</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400167 </dependency>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800168 </dependencies>
vinayakb0c860392012-10-06 18:47:20 +0000169</project>