Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ! Copyright 2009-2013 by The Regents of the University of California |
| 3 | ! Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | ! you may not use this file except in compliance with the License. |
| 5 | ! you may obtain a copy of the License from |
| 6 | ! |
| 7 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | ! |
| 9 | ! Unless required by applicable law or agreed to in writing, software |
| 10 | ! distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | ! See the License for the specific language governing permissions and |
| 13 | ! limitations under the License. |
| 14 | !--> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 15 | <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"> |
| 16 | <modelVersion>4.0.0</modelVersion> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 17 | <groupId>org.apache.asterix</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 18 | <artifactId>lexer-generator-maven-plugin</artifactId> |
vinayakb | 9fe5844 | 2013-04-07 01:22:30 +0000 | [diff] [blame] | 19 | <parent> |
| 20 | <artifactId>asterix-maven-plugins</artifactId> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 21 | <groupId>org.apache.asterix</groupId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 22 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 9fe5844 | 2013-04-07 01:22:30 +0000 | [diff] [blame] | 23 | </parent> |
| 24 | |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 25 | <packaging>maven-plugin</packaging> |
| 26 | <name>lexer-generator-maven-plugin</name> |
| 27 | |
| 28 | <build> |
| 29 | <plugins> |
| 30 | <plugin> |
| 31 | <groupId>org.apache.maven.plugins</groupId> |
| 32 | <artifactId>maven-compiler-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 33 | <version>2.3.2</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 34 | <configuration> |
Madhusudan.C.S | e910818 | 2013-06-02 14:34:49 -0700 | [diff] [blame] | 35 | <source>1.7</source> |
| 36 | <target>1.7</target> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 37 | <fork>true</fork> |
| 38 | </configuration> |
| 39 | </plugin> |
| 40 | </plugins> |
| 41 | </build> |
| 42 | |
| 43 | <dependencies> |
| 44 | <dependency> |
Chris Hillery | e2542dc | 2014-02-21 01:01:19 -0800 | [diff] [blame] | 45 | <!-- Dependency management inherited from top-level asterixdb --> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 46 | <groupId>junit</groupId> |
| 47 | <artifactId>junit</artifactId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.apache.maven</groupId> |
| 51 | <artifactId>maven-plugin-api</artifactId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 52 | </dependency> |
| 53 | </dependencies> |
| 54 | </project> |