vinayakb | 8a1a718 | 2013-04-07 01:45:00 +0000 | [diff] [blame] | 1 | <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] | 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <parent> |
| 4 | <artifactId>asterix</artifactId> |
| 5 | <groupId>edu.uci.ics.asterix</groupId> |
Vinayak Borkar | 726f392 | 2013-04-25 14:32:21 -0700 | [diff] [blame] | 6 | <version>0.0.6-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 7 | </parent> |
| 8 | <artifactId>asterix-test-framework</artifactId> |
| 9 | <build> |
| 10 | <plugins> |
| 11 | <plugin> |
| 12 | <groupId>org.apache.maven.plugins</groupId> |
| 13 | <artifactId>maven-compiler-plugin</artifactId> |
| 14 | <version>2.0.2</version> |
| 15 | <configuration> |
| 16 | <source>1.7</source> |
| 17 | <target>1.7</target> |
| 18 | <fork>true</fork> |
| 19 | </configuration> |
| 20 | </plugin> |
| 21 | <plugin> |
| 22 | <groupId>org.jvnet.jaxb2.maven2</groupId> |
| 23 | <artifactId>maven-jaxb2-plugin</artifactId> |
| 24 | <executions> |
| 25 | <execution> |
| 26 | <goals> |
| 27 | <goal>generate</goal> |
| 28 | </goals> |
| 29 | </execution> |
| 30 | </executions> |
| 31 | </plugin> |
| 32 | </plugins> |
| 33 | </build> |
| 34 | |
| 35 | <dependencies> |
| 36 | </dependencies> |
| 37 | </project> |