blob: 524727f2f6c6f69fa9da2bb0dd48ed7517da2518 [file] [log] [blame]
diegogiorgini@gmail.com2de6d342013-02-16 02:41:45 +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 </configuration>
19 </plugin>
20 </plugins>
21 </build>
22
23 <dependencies>
24 <dependency>
25 <groupId>junit</groupId>
26 <artifactId>junit</artifactId>
27 <version>4.8.1</version>
28 <scope>test</scope>
29 </dependency>
30 <dependency>
31 <groupId>org.apache.maven</groupId>
32 <artifactId>maven-plugin-api</artifactId>
33 <version>2.0.2</version>
34 </dependency>
35 </dependencies>
36</project>