blob: 98e7be9d62b17c6d8f8146f823b8783f54ca36fd [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001<!--
2 ! Copyright 2009-2013 by The Regents of the University of California
3 ! Licensed under the Apache License, Version 2.0 (the "License");
4 ! you may not use this file except in compliance with the License.
5 ! you may obtain a copy of the License from
6 !
7 ! http://www.apache.org/licenses/LICENSE-2.0
8 !
9 ! Unless required by applicable law or agreed to in writing, software
10 ! distributed under the License is distributed on an "AS IS" BASIS,
11 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 ! See the License for the specific language governing permissions and
13 ! limitations under the License.
14 !-->
vinayakb8a1a7182013-04-07 01:45:00 +000015<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/xsd/maven-4.0.0.xsd">
vinayakb5ee049d2013-04-06 21:21:29 +000016 <modelVersion>4.0.0</modelVersion>
17 <parent>
18 <artifactId>asterix</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070019 <groupId>org.apache.asterix</groupId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070020 <version>0.8.7-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +000021 </parent>
22 <artifactId>asterix-test-framework</artifactId>
Ian4a816dc2014-11-26 15:46:32 -080023
24 <licenses>
25 <license>
26 <name>Apache License, Version 2.0</name>
27 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
28 <distribution>repo</distribution>
29 <comments>A business-friendly OSS license</comments>
30 </license>
31 </licenses>
32
vinayakb5ee049d2013-04-06 21:21:29 +000033 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070038 <version>2.3.2</version>
vinayakb5ee049d2013-04-06 21:21:29 +000039 <configuration>
40 <source>1.7</source>
41 <target>1.7</target>
42 <fork>true</fork>
43 </configuration>
44 </plugin>
45 <plugin>
46 <groupId>org.jvnet.jaxb2.maven2</groupId>
47 <artifactId>maven-jaxb2-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070048 <version>0.9.0</version>
vinayakb5ee049d2013-04-06 21:21:29 +000049 <executions>
50 <execution>
51 <goals>
52 <goal>generate</goal>
53 </goals>
54 </execution>
55 </executions>
56 </plugin>
57 </plugins>
58 </build>
59
vinayakb5ee049d2013-04-06 21:21:29 +000060</project>