Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 1 | <!-- |
| 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 | !--> |
vinayakb | 8a1a718 | 2013-04-07 01:45:00 +0000 | [diff] [blame] | 15 | <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"> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 16 | <modelVersion>4.0.0</modelVersion> |
| 17 | <parent> |
| 18 | <artifactId>asterix</artifactId> |
| 19 | <groupId>edu.uci.ics.asterix</groupId> |
Vinayak Borkar | 84fc7cc | 2013-12-22 12:45:31 -0800 | [diff] [blame^] | 20 | <version>0.8.3</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 21 | </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> |