vinayakb | 5ee049d | 2013-04-06 21:21:29 +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> |
vinayakb | 9fe5844 | 2013-04-07 01:22:30 +0000 | [diff] [blame] | 5 | <parent> |
| 6 | <artifactId>asterix-maven-plugins</artifactId> |
| 7 | <groupId>edu.uci.ics.asterix</groupId> |
Vinayak Borkar | 726f392 | 2013-04-25 14:32:21 -0700 | [diff] [blame] | 8 | <version>0.0.6-SNAPSHOT</version> |
vinayakb | 9fe5844 | 2013-04-07 01:22:30 +0000 | [diff] [blame] | 9 | </parent> |
| 10 | |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 11 | <packaging>maven-plugin</packaging> |
| 12 | <name>lexer-generator-maven-plugin</name> |
| 13 | |
| 14 | <build> |
| 15 | <plugins> |
| 16 | <plugin> |
| 17 | <groupId>org.apache.maven.plugins</groupId> |
| 18 | <artifactId>maven-compiler-plugin</artifactId> |
| 19 | <version>2.0.2</version> |
| 20 | <configuration> |
Madhusudan.C.S | e910818 | 2013-06-02 14:34:49 -0700 | [diff] [blame] | 21 | <source>1.7</source> |
| 22 | <target>1.7</target> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 23 | <fork>true</fork> |
| 24 | </configuration> |
| 25 | </plugin> |
| 26 | </plugins> |
| 27 | </build> |
| 28 | |
| 29 | <dependencies> |
| 30 | <dependency> |
| 31 | <groupId>junit</groupId> |
| 32 | <artifactId>junit</artifactId> |
| 33 | <version>4.8.1</version> |
| 34 | <scope>test</scope> |
| 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>org.apache.maven</groupId> |
| 38 | <artifactId>maven-plugin-api</artifactId> |
| 39 | <version>2.0.2</version> |
| 40 | </dependency> |
| 41 | </dependencies> |
| 42 | </project> |