blob: 1e22da07b7a2ea7c81098726f90c1312a08108a9 [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>
25 <artifactId>asterix</artifactId>
26 <groupId>org.apache.asterix</groupId>
27 <version>0.8.8-SNAPSHOT</version>
28 </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>
43 <groupId>org.apache.maven.plugins</groupId>
44 <artifactId>maven-compiler-plugin</artifactId>
45 <configuration>
Murtadha Hubaileacff782015-11-05 19:38:01 -080046 <source>1.8</source>
47 <target>1.8</target>
Yingyi Bu391f09e2015-10-29 13:49:39 -070048 <fork>true</fork>
49 </configuration>
50 </plugin>
51 <plugin>
52 <groupId>org.codehaus.mojo</groupId>
53 <artifactId>build-helper-maven-plugin</artifactId>
54 <version>1.9</version>
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 </build>
72
73 <dependencies>
74 <dependency>
75 <groupId>org.apache.asterix</groupId>
76 <artifactId>asterix-common</artifactId>
77 <version>0.8.8-SNAPSHOT</version>
78 <scope>compile</scope>
79 </dependency>
80 <dependency>
81 <groupId>org.apache.asterix</groupId>
82 <artifactId>asterix-metadata</artifactId>
83 <version>0.8.8-SNAPSHOT</version>
84 <scope>compile</scope>
85 </dependency>
86 <dependency>
87 <groupId>xerces</groupId>
88 <artifactId>xerces</artifactId>
89 <version>2.4.0</version>
90 </dependency>
91 </dependencies>
92
93</project>