blob: 269150db0a43a304f61983a7a9969596df009887 [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>
diegogiorgini@gmail.com2de6d342013-02-16 02:41:45 +000018 </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>