blob: 13eda82a753d2c12d30300fc23552d5a4af38e0e [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>
19 <groupId>edu.uci.ics.asterix</groupId>
Vinayak Borkar726f3922013-04-25 14:32:21 -070020 <version>0.0.6-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +000021 </parent>
22 <artifactId>asterix-test-framework</artifactId>
23 <build>
24 <plugins>
25 <plugin>
26 <groupId>org.apache.maven.plugins</groupId>
27 <artifactId>maven-compiler-plugin</artifactId>
28 <version>2.0.2</version>
29 <configuration>
30 <source>1.7</source>
31 <target>1.7</target>
32 <fork>true</fork>
33 </configuration>
34 </plugin>
35 <plugin>
36 <groupId>org.jvnet.jaxb2.maven2</groupId>
37 <artifactId>maven-jaxb2-plugin</artifactId>
38 <executions>
39 <execution>
40 <goals>
41 <goal>generate</goal>
42 </goals>
43 </execution>
44 </executions>
45 </plugin>
46 </plugins>
47 </build>
48
49 <dependencies>
50 </dependencies>
51</project>