blob: 6d4186840aaaed64b7d403f35555b176b8ac715c [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>
Yingyi Bu0622e8e2014-05-27 17:46:41 -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 Maxonba7ed182016-01-25 02:59:58 -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>
31 <root.dir>${basedir}/../../..</root.dir>
32 </properties>
33
Chris Hilleryb531ce32014-02-20 16:39:25 -080034 <build>
35 <plugins>
36 <plugin>
37 <groupId>org.apache.maven.plugins</groupId>
38 <artifactId>maven-compiler-plugin</artifactId>
39 <version>2.0.2</version>
40 <configuration>
41 <source>1.7</source>
42 <target>1.7</target>
43 <fork>true</fork>
44 </configuration>
45 </plugin>
46 <plugin>
47 <groupId>org.codehaus.mojo</groupId>
48 <artifactId>javacc-maven-plugin</artifactId>
49 <version>2.6</version>
50 <executions>
51 <execution>
52 <id>javacc</id>
53 <goals>
54 <goal>javacc</goal>
55 </goals>
56 <configuration>
57 <isStatic>false</isStatic>
58 </configuration>
59 </execution>
60 </executions>
61 </plugin>
62 <plugin>
63 <groupId>org.codehaus.mojo</groupId>
64 <artifactId>build-helper-maven-plugin</artifactId>
65 <executions>
66 <execution>
67 <id>add-source</id>
68 <phase>generate-sources</phase>
69 <goals>
70 <goal>add-source</goal>
71 </goals>
72 <configuration>
73 <sources>
74 <source>${project.build.directory}/generated-sources/javacc/</source>
75 </sources>
76 </configuration>
77 </execution>
78 </executions>
79 </plugin>
80 </plugins>
81 <pluginManagement>
82 <plugins>
83 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
84 <plugin>
85 <groupId>org.eclipse.m2e</groupId>
86 <artifactId>lifecycle-mapping</artifactId>
87 <version>1.0.0</version>
88 <configuration>
89 <lifecycleMappingMetadata>
90 <pluginExecutions>
91 <pluginExecution>
92 <pluginExecutionFilter>
93 <groupId>
94 org.codehaus.mojo
95 </groupId>
96 <artifactId>
97 javacc-maven-plugin
98 </artifactId>
99 <versionRange>
100 [2.6,)
101 </versionRange>
102 <goals>
103 <goal>javacc</goal>
104 </goals>
105 </pluginExecutionFilter>
106 <action>
107 <ignore />
108 </action>
109 </pluginExecution>
110 </pluginExecutions>
111 </lifecycleMappingMetadata>
112 </configuration>
113 </plugin>
114 </plugins>
115 </pluginManagement>
116 </build>
117 <dependencies>
118 <dependency>
119 <!-- Dependency management inherited from top-level hyracks -->
120 <groupId>junit</groupId>
121 <artifactId>junit</artifactId>
122 </dependency>
123 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700124 <groupId>org.apache.hyracks</groupId>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800125 <artifactId>algebricks-compiler</artifactId>
Ian Maxonba7ed182016-01-25 02:59:58 -0800126 <version>0.2.18-SNAPSHOT</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800127 </dependency>
128 </dependencies>
vinayakb0c860392012-10-06 18:47:20 +0000129</project>