Sasa Zivkov | 844c51e | 2012-05-29 22:29:33 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | Copyright (C) 2012 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 18 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 19 | <modelVersion>4.0.0</modelVersion> |
| 20 | |
Edwin Kempin | 3e0af53 | 2013-08-27 08:27:21 +0200 | [diff] [blame] | 21 | <groupId>com.google.gerrit</groupId> |
Sasa Zivkov | 844c51e | 2012-05-29 22:29:33 +0200 | [diff] [blame] | 22 | <artifactId>gerrit-plugin-archetype</artifactId> |
David Pursehouse | c7e5397 | 2014-07-23 12:05:35 +0900 | [diff] [blame] | 23 | <version>2.11-SNAPSHOT</version> |
Sasa Zivkov | 844c51e | 2012-05-29 22:29:33 +0200 | [diff] [blame] | 24 | <name>Gerrit Code Review - Plugin Archetype</name> |
Edwin Kempin | cf60c8b | 2014-05-21 09:29:32 +0200 | [diff] [blame] | 25 | <description>Maven Archetype for Gerrit Plugins</description> |
| 26 | <url>http://code.google.com/p/gerrit/</url> |
Sasa Zivkov | 844c51e | 2012-05-29 22:29:33 +0200 | [diff] [blame] | 27 | |
| 28 | <properties> |
| 29 | <defaultGerritApiVersion>${project.version}</defaultGerritApiVersion> |
| 30 | </properties> |
| 31 | |
| 32 | <build> |
| 33 | <resources> |
| 34 | <resource> |
| 35 | <directory>src/main/resources</directory> |
| 36 | <filtering>true</filtering> |
| 37 | <includes> |
| 38 | <include>META-INF/maven/archetype-metadata.xml</include> |
| 39 | </includes> |
| 40 | </resource> |
| 41 | <resource> |
| 42 | <directory>src/main/resources</directory> |
| 43 | <filtering>false</filtering> |
| 44 | <excludes> |
| 45 | <exclude>META-INF/maven/archetype-metadata.xml</exclude> |
| 46 | </excludes> |
| 47 | </resource> |
| 48 | </resources> |
| 49 | </build> |
| 50 | |
Edwin Kempin | cf60c8b | 2014-05-21 09:29:32 +0200 | [diff] [blame] | 51 | <licenses> |
| 52 | <license> |
| 53 | <name>The Apache Software License, Version 2.0</name> |
| 54 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 55 | <distribution>repo</distribution> |
| 56 | </license> |
| 57 | </licenses> |
| 58 | |
| 59 | <scm> |
| 60 | <url>https://gerrit.googlesource.com/gerrit</url> |
| 61 | <connection>https://gerrit.googlesource.com/gerrit</connection> |
| 62 | </scm> |
| 63 | |
| 64 | <developers> |
| 65 | <developer> |
| 66 | <name>Dave Borowitz</name> |
| 67 | </developer> |
| 68 | <developer> |
| 69 | <name>David Pursehouse</name> |
| 70 | </developer> |
| 71 | <developer> |
| 72 | <name>Edwin Kempin</name> |
| 73 | </developer> |
| 74 | <developer> |
| 75 | <name>Martin Fick</name> |
| 76 | </developer> |
| 77 | <developer> |
| 78 | <name>Saša Živkov</name> |
| 79 | </developer> |
| 80 | <developer> |
| 81 | <name>Shawn Pearce</name> |
| 82 | </developer> |
| 83 | </developers> |
| 84 | |
| 85 | <mailingLists> |
| 86 | <mailingList> |
| 87 | <name>Repo and Gerrit Discussion</name> |
| 88 | <post>repo-discuss@googlegroups.com</post> |
| 89 | <subscribe>https://groups.google.com/forum/#!forum/repo-discuss</subscribe> |
| 90 | <unsubscribe>https://groups.google.com/forum/#!forum/repo-discuss</unsubscribe> |
| 91 | <archive>https://groups.google.com/forum/#!forum/repo-discuss</archive> |
| 92 | </mailingList> |
| 93 | </mailingLists> |
| 94 | |
| 95 | <issueManagement> |
| 96 | <url>http://code.google.com/p/gerrit/issues/list</url> |
| 97 | <system>Google Code Issue Tracker</system> |
| 98 | </issueManagement> |
Sasa Zivkov | 844c51e | 2012-05-29 22:29:33 +0200 | [diff] [blame] | 99 | </project> |