Clement Escoffier | bf9cacd | 2011-12-03 09:11:15 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | Licensed to the Apache Software Foundation (ASF) under one |
| 3 | or more contributor license agreements. See the NOTICE file |
| 4 | distributed with this work for additional information |
| 5 | regarding copyright ownership. The ASF licenses this file |
| 6 | to you under the Apache License, Version 2.0 (the |
| 7 | "License"); you may not use this file except in compliance |
| 8 | with the License. You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, |
| 13 | software distributed under the License is distributed on an |
| 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | KIND, either express or implied. See the License for the |
| 16 | specific language governing permissions and limitations |
| 17 | under the License. |
| 18 | --> |
Clement Escoffier | b08497e | 2012-03-30 08:40:33 +0000 | [diff] [blame] | 19 | <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"> |
Clement Escoffier | 6972d2c | 2012-03-12 09:44:16 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix-parent</artifactId> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 23 | <version>2.1</version> |
Clement Escoffier | 6972d2c | 2012-03-12 09:44:16 +0000 | [diff] [blame] | 24 | <relativePath>../../../pom/pom.xml</relativePath> |
| 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <artifactId>maven-ipojo-plugin</artifactId> |
Clement Escoffier | f28c931 | 2013-10-08 13:11:46 +0000 | [diff] [blame] | 28 | <version>1.11.1-SNAPSHOT</version> |
Clement Escoffier | 6972d2c | 2012-03-12 09:44:16 +0000 | [diff] [blame] | 29 | <name>Apache Felix iPOJO Maven Plugin</name> |
| 30 | <packaging>maven-plugin</packaging> |
Clement Escoffier | bf9cacd | 2011-12-03 09:11:15 +0000 | [diff] [blame] | 31 | |
Clement Escoffier | 6972d2c | 2012-03-12 09:44:16 +0000 | [diff] [blame] | 32 | <description> |
| 33 | Maven Plugin to package iPOJO-powered bundles. |
| 34 | </description> |
| 35 | <url> |
Clement Escoffier | b76fae7 | 2013-05-28 04:37:54 +0000 | [diff] [blame] | 36 | http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/ipojo-maven-plug-in.html |
Clement Escoffier | 6972d2c | 2012-03-12 09:44:16 +0000 | [diff] [blame] | 37 | </url> |
Clement Escoffier | bf9cacd | 2011-12-03 09:11:15 +0000 | [diff] [blame] | 38 | |
Clement Escoffier | 6972d2c | 2012-03-12 09:44:16 +0000 | [diff] [blame] | 39 | <dependencies> |
| 40 | <dependency> |
| 41 | <groupId>org.apache.maven</groupId> |
| 42 | <artifactId>maven-plugin-api</artifactId> |
| 43 | <version>2.0.4</version> |
| 44 | <scope>compile</scope> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.apache.maven</groupId> |
| 48 | <artifactId>maven-archiver</artifactId> |
| 49 | <version>2.4.1</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.codehaus.plexus</groupId> |
| 53 | <artifactId>plexus-utils</artifactId> |
| 54 | <version>2.0.5</version> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.apache.maven</groupId> |
| 58 | <artifactId>maven-project</artifactId> |
| 59 | <version>2.0.4</version> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.apache.maven</groupId> |
| 63 | <artifactId>maven-artifact</artifactId> |
| 64 | <version>2.0.4</version> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>xerces</groupId> |
| 68 | <artifactId>xercesImpl</artifactId> |
| 69 | <version>2.9.1</version> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.apache.felix</groupId> |
| 73 | <artifactId>org.apache.felix.ipojo.metadata</artifactId> |
| 74 | <version>1.4.0</version> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.apache.felix</groupId> |
| 78 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId> |
Guillaume Sauthier | 8c8c7c2 | 2013-06-01 18:45:03 +0000 | [diff] [blame] | 79 | <version>${project.version}</version> |
Clement Escoffier | 6972d2c | 2012-03-12 09:44:16 +0000 | [diff] [blame] | 80 | </dependency> |
| 81 | </dependencies> |
| 82 | <build> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 83 | |
Clement Escoffier | 6972d2c | 2012-03-12 09:44:16 +0000 | [diff] [blame] | 84 | <plugins> |
| 85 | <plugin> |
Clement Escoffier | 6972d2c | 2012-03-12 09:44:16 +0000 | [diff] [blame] | 86 | <groupId>org.apache.maven.plugins</groupId> |
| 87 | <artifactId>maven-checkstyle-plugin</artifactId> |
Guillaume Sauthier | 842f2ae | 2013-07-04 14:45:59 +0000 | [diff] [blame] | 88 | <version>2.10</version> |
Clement Escoffier | 6972d2c | 2012-03-12 09:44:16 +0000 | [diff] [blame] | 89 | <configuration> |
| 90 | <enableRulesSummary>false</enableRulesSummary> |
| 91 | <violationSeverity>warning</violationSeverity> |
| 92 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 93 | </configuration> |
| 94 | </plugin> |
| 95 | <plugin> |
| 96 | <groupId>org.apache.maven.plugins</groupId> |
| 97 | <artifactId>maven-compiler-plugin</artifactId> |
| 98 | <configuration> |
| 99 | <source>1.5</source> |
| 100 | <target>1.5</target> |
| 101 | </configuration> |
| 102 | </plugin> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 103 | |
| 104 | <plugin> |
| 105 | <groupId>org.apache.rat</groupId> |
| 106 | <artifactId>apache-rat-plugin</artifactId> |
| 107 | <executions> |
| 108 | <execution> |
| 109 | <phase>verify</phase> |
| 110 | <goals> |
| 111 | <goal>check</goal> |
| 112 | </goals> |
| 113 | </execution> |
| 114 | </executions> |
| 115 | <configuration> |
| 116 | <!-- check src only (except remote resources additions) --> |
| 117 | <includes> |
| 118 | <include>src/**</include> |
| 119 | </includes> |
| 120 | <excludes> |
| 121 | <exclude>src/main/appended-resources/**</exclude> |
| 122 | <!-- exclude the archetype --> |
| 123 | <exclude>src/main/resources/archetype-resources/**</exclude> |
| 124 | </excludes> |
| 125 | </configuration> |
| 126 | </plugin> |
Clement Escoffier | 6972d2c | 2012-03-12 09:44:16 +0000 | [diff] [blame] | 127 | </plugins> |
| 128 | </build> |
Clement Escoffier | 195bb8f | 2011-12-06 15:04:44 +0000 | [diff] [blame] | 129 | |
| 130 | <profiles> |
| 131 | <profile> |
| 132 | <id>release</id> |
| 133 | <build> |
| 134 | <plugins> |
| 135 | <plugin> |
| 136 | <groupId>org.apache.maven.plugins</groupId> |
| 137 | <artifactId>maven-javadoc-plugin</artifactId> |
| 138 | <executions> |
| 139 | <execution> |
| 140 | <id>attach-javadocs</id> |
| 141 | <goals> |
| 142 | <goal>jar</goal> |
| 143 | </goals> |
| 144 | </execution> |
| 145 | </executions> |
| 146 | </plugin> |
| 147 | </plugins> |
| 148 | </build> |
| 149 | </profile> |
| 150 | </profiles> |
Clement Escoffier | bf9cacd | 2011-12-03 09:11:15 +0000 | [diff] [blame] | 151 | </project> |