blob: 840e6248d047cb55770bff6823061ee4c4b1ba14 [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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <groupId>edu.uci.ics.asterix</groupId>
4 <artifactId>lexer-generator-maven-plugin</artifactId>
5 <version>0.1</version>
6 <packaging>maven-plugin</packaging>
7 <name>lexer-generator-maven-plugin</name>
8
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.6</source>
17 <target>1.6</target>
18 <fork>true</fork>
19 </configuration>
20 </plugin>
21 </plugins>
22 </build>
23
24 <dependencies>
25 <dependency>
26 <groupId>junit</groupId>
27 <artifactId>junit</artifactId>
28 <version>4.8.1</version>
29 <scope>test</scope>
30 </dependency>
31 <dependency>
32 <groupId>org.apache.maven</groupId>
33 <artifactId>maven-plugin-api</artifactId>
34 <version>2.0.2</version>
35 </dependency>
36 </dependencies>
37</project>