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