blob: b117b298d329d9605e8c8ac0f95e65c2179fabb6 [file] [log] [blame]
Sasa Zivkov844c51e2012-05-29 22:29:33 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3Copyright (C) 2012 The Android Open Source Project
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations 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 Kempin3e0af532013-08-27 08:27:21 +020021 <groupId>com.google.gerrit</groupId>
Sasa Zivkov844c51e2012-05-29 22:29:33 +020022 <artifactId>gerrit-plugin-archetype</artifactId>
David Pursehousec7e53972014-07-23 12:05:35 +090023 <version>2.11-SNAPSHOT</version>
Sasa Zivkov844c51e2012-05-29 22:29:33 +020024 <name>Gerrit Code Review - Plugin Archetype</name>
Edwin Kempincf60c8b2014-05-21 09:29:32 +020025 <description>Maven Archetype for Gerrit Plugins</description>
26 <url>http://code.google.com/p/gerrit/</url>
Sasa Zivkov844c51e2012-05-29 22:29:33 +020027
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 Kempincf60c8b2014-05-21 09:29:32 +020051 <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 Zivkov844c51e2012-05-29 22:29:33 +020099</project>