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 | 62864b7 | 2013-10-17 23:05:08 +0900 | [diff] [blame] | 23 | <version>2.9-SNAPSHOT</version> |
Sasa Zivkov | 844c51e | 2012-05-29 22:29:33 +0200 | [diff] [blame] | 24 | <name>Gerrit Code Review - Plugin Archetype</name> |
| 25 | |
| 26 | <properties> |
| 27 | <defaultGerritApiVersion>${project.version}</defaultGerritApiVersion> |
| 28 | </properties> |
| 29 | |
| 30 | <build> |
| 31 | <resources> |
| 32 | <resource> |
| 33 | <directory>src/main/resources</directory> |
| 34 | <filtering>true</filtering> |
| 35 | <includes> |
| 36 | <include>META-INF/maven/archetype-metadata.xml</include> |
| 37 | </includes> |
| 38 | </resource> |
| 39 | <resource> |
| 40 | <directory>src/main/resources</directory> |
| 41 | <filtering>false</filtering> |
| 42 | <excludes> |
| 43 | <exclude>META-INF/maven/archetype-metadata.xml</exclude> |
| 44 | </excludes> |
| 45 | </resource> |
| 46 | </resources> |
| 47 | </build> |
| 48 | |
| 49 | </project> |