blob: dc5e2079a5f180df3a131f3409b2b422ec397815 [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>
madhusudancs@gmail.comb72d1ca2013-02-26 04:39:02 +000016 <source>1.7</source>
17 <target>1.7</target>
buyingyi8a61a182013-03-03 08:41:25 +000018 <fork>true</fork>
diegogiorgini@gmail.com2de6d342013-02-16 02:41:45 +000019 </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>