blob: 4042066e38c9c93143c34b2b4ac45fc625a60cf4 [file] [log] [blame]
vinayakb5ee049d2013-04-06 21:21:29 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <artifactId>asterix</artifactId>
6 <groupId>edu.uci.ics.asterix</groupId>
7 <version>0.0.4-SNAPSHOT</version>
8 </parent>
9 <artifactId>asterix-test-framework</artifactId>
10 <build>
11 <plugins>
12 <plugin>
13 <groupId>org.apache.maven.plugins</groupId>
14 <artifactId>maven-compiler-plugin</artifactId>
15 <version>2.0.2</version>
16 <configuration>
17 <source>1.7</source>
18 <target>1.7</target>
19 <fork>true</fork>
20 </configuration>
21 </plugin>
22 <plugin>
23 <groupId>org.jvnet.jaxb2.maven2</groupId>
24 <artifactId>maven-jaxb2-plugin</artifactId>
25 <executions>
26 <execution>
27 <goals>
28 <goal>generate</goal>
29 </goals>
30 </execution>
31 </executions>
32 </plugin>
33 </plugins>
34 </build>
35
36 <dependencies>
37 </dependencies>
38</project>