blob: d1a5f808c18c2f3d9576027e6b6fc2637f7f236b [file] [log] [blame]
Yingyi Bu391f09e2015-10-29 13:49:39 -07001<!--
2 ! 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<project
20 xmlns="http://maven.apache.org/POM/4.0.0"
21 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24 <parent>
Ian Maxon3da9d062016-03-16 17:05:31 -070025 <artifactId>apache-asterixdb</artifactId>
Yingyi Bu391f09e2015-10-29 13:49:39 -070026 <groupId>org.apache.asterix</groupId>
Ian Maxon3da9d062016-03-16 17:05:31 -070027 <version>0.8.9-SNAPSHOT</version>
Yingyi Bu391f09e2015-10-29 13:49:39 -070028 </parent>
29
30 <licenses>
31 <license>
32 <name>Apache License, Version 2.0</name>
33 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
34 <distribution>repo</distribution>
35 <comments>A business-friendly OSS license</comments>
36 </license>
37 </licenses>
38
39 <artifactId>asterix-lang-common</artifactId>
40 <build>
41 <plugins>
42 <plugin>
Yingyi Bu391f09e2015-10-29 13:49:39 -070043 <groupId>org.codehaus.mojo</groupId>
44 <artifactId>build-helper-maven-plugin</artifactId>
45 <version>1.9</version>
46 <executions>
47 <execution>
48 <id>add-source</id>
49 <phase>generate-sources</phase>
50 <goals>
51 <goal>add-source</goal>
52 </goals>
53 <configuration>
54 <sources>
55 <source>${project.build.directory}/generated-sources/javacc/</source>
56 </sources>
57 </configuration>
58 </execution>
59 </executions>
60 </plugin>
61 </plugins>
62 </build>
63
64 <dependencies>
65 <dependency>
66 <groupId>org.apache.asterix</groupId>
67 <artifactId>asterix-common</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -070068 <version>0.8.9-SNAPSHOT</version>
Yingyi Bu391f09e2015-10-29 13:49:39 -070069 <scope>compile</scope>
70 </dependency>
71 <dependency>
72 <groupId>org.apache.asterix</groupId>
73 <artifactId>asterix-metadata</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -070074 <version>0.8.9-SNAPSHOT</version>
Yingyi Bu391f09e2015-10-29 13:49:39 -070075 <scope>compile</scope>
76 </dependency>
77 <dependency>
78 <groupId>xerces</groupId>
79 <artifactId>xerces</artifactId>
80 <version>2.4.0</version>
81 </dependency>
82 </dependencies>
83
Ian Maxon3da9d062016-03-16 17:05:31 -070084</project>