Shawn O. Pearce | b1901c0 | 2011-05-19 09:06:34 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | Copyright (C) 2009 The Android Open Source Project |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | --> |
| 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
| 23 | <groupId>com.google.gerrit</groupId> |
| 24 | <artifactId>gerrit-parent</artifactId> |
Edwin Kempin | 20f9968 | 2012-08-22 14:09:52 +0200 | [diff] [blame] | 25 | <version>2.6-SNAPSHOT</version> |
Shawn O. Pearce | b1901c0 | 2011-05-19 09:06:34 -0700 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <artifactId>gerrit-antlr</artifactId> |
| 29 | <name>Gerrit Code Review - ANTLR</name> |
| 30 | |
| 31 | <description> |
| 32 | ANTLR generated sources |
| 33 | </description> |
| 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.antlr</groupId> |
| 38 | <artifactId>antlr</artifactId> |
| 39 | </dependency> |
| 40 | </dependencies> |
| 41 | |
| 42 | <build> |
| 43 | <plugins> |
| 44 | <plugin> |
| 45 | <groupId>org.antlr</groupId> |
| 46 | <artifactId>antlr3-maven-plugin</artifactId> |
| 47 | <executions> |
| 48 | <execution> |
| 49 | <goals> |
| 50 | <goal>antlr</goal> |
| 51 | </goals> |
| 52 | </execution> |
| 53 | </executions> |
| 54 | </plugin> |
Shawn O. Pearce | ebf0432 | 2011-09-06 10:49:06 -0700 | [diff] [blame] | 55 | |
| 56 | <plugin> |
| 57 | <groupId>org.apache.maven.plugins</groupId> |
| 58 | <artifactId>maven-source-plugin</artifactId> |
| 59 | <executions> |
| 60 | <execution> |
| 61 | <goals> |
| 62 | <goal>jar</goal> |
| 63 | </goals> |
| 64 | </execution> |
| 65 | </executions> |
| 66 | </plugin> |
Shawn O. Pearce | b1901c0 | 2011-05-19 09:06:34 -0700 | [diff] [blame] | 67 | </plugins> |
| 68 | </build> |
| 69 | </project> |