diegogiorgini@gmail.com | 2de6d34 | 2013-02-16 02:41:45 +0000 | [diff] [blame] | 1 | <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.com | b72d1ca | 2013-02-26 04:39:02 +0000 | [diff] [blame] | 16 | <source>1.7</source> |
| 17 | <target>1.7</target> |
diegogiorgini@gmail.com | 2de6d34 | 2013-02-16 02:41:45 +0000 | [diff] [blame] | 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> |