blob: e488cd73efe53631805da11844e849db04e2ca42 [file] [log] [blame]
Clement Escoffier3482f242008-10-14 09:43:32 +00001<!--
Clement Escoffierde57c1a2009-07-17 08:10:38 +00002 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
Clement Escoffier0b93f382009-07-03 13:16:24 +00009
Clement Escoffierde57c1a2009-07-17 08:10:38 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier0b93f382009-07-03 13:16:24 +000011
Clement Escoffierde57c1a2009-07-17 08:10:38 +000012 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.
Clement Escoffier3482f242008-10-14 09:43:32 +000018-->
Clement Escoffier0b540562009-01-19 13:56:43 +000019<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 Escoffierde57c1a2009-07-17 08:10:38 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Clement Escoffier86215df2010-04-16 13:54:16 +000023 <version>1.2.1</version>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000024 <relativePath>../../pom/pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <artifactId>maven-ipojo-plugin</artifactId>
28 <groupId>org.apache.felix</groupId>
Clement Escoffiere13c7982009-09-04 08:17:51 +000029 <version>1.5.0-SNAPSHOT</version>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000030 <name>Apache Felix iPOJO Maven Plugin</name>
31 <packaging>maven-plugin</packaging>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000032
33 <description>
34 Maven Plugin to package iPOJO-powered bundles.
35 </description>
36 <url>
37 http://felix.apache.org/site/ipojo-maven-plug-in.html
38 </url>
39
Clement Escoffierde57c1a2009-07-17 08:10:38 +000040 <dependencies>
41 <dependency>
42 <groupId>org.apache.maven</groupId>
43 <artifactId>maven-plugin-api</artifactId>
44 <version>2.0</version>
45 <scope>compile</scope>
46 </dependency>
47 <dependency>
48 <groupId>org.apache.maven</groupId>
49 <artifactId>maven-archiver</artifactId>
50 <version>2.0</version>
51 </dependency>
52 <dependency>
53 <groupId>org.codehaus.plexus</groupId>
54 <artifactId>plexus-utils</artifactId>
55 <version>1.1</version>
56 </dependency>
57 <dependency>
58 <groupId>org.apache.maven</groupId>
59 <artifactId>maven-artifact</artifactId>
60 <version>2.0</version>
61 </dependency>
62 <dependency>
63 <groupId>xerces</groupId>
64 <artifactId>xercesImpl</artifactId>
65 <version>2.9.1</version>
66 </dependency>
67 <dependency>
68 <groupId>org.apache.felix</groupId>
69 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier9e4e85a2010-04-12 06:27:58 +000070 <version>1.4.0</version>
Clement Escoffier9dffab92009-08-25 16:44:42 +000071 </dependency>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000072 <dependency>
73 <groupId>org.apache.felix</groupId>
74 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffier53ac6212009-09-04 08:20:15 +000075 <version>${pom.version}</version>
Clement Escoffierde57c1a2009-07-17 08:10:38 +000076 </dependency>
77 </dependencies>
78 <build>
79 <plugins>
80 <plugin>
81 <groupId>org.codehaus.mojo</groupId>
82 <artifactId>rat-maven-plugin</artifactId>
83 <configuration>
84 <excludeSubProjects>false</excludeSubProjects>
85 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
86 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
87 <excludes>
88 <param>doc/**/*</param>
89 <param>maven-eclipse.xml</param>
90 <param>.checkstyle</param>
91 <param>.externalToolBuilders/*</param>
92 <param>LICENSE.asm</param>
93 <param>**/archetype-resources/**/*</param>
94 <param>**/archetype.xml</param>
95 </excludes>
96 </configuration>
97 </plugin>
98 <plugin>
99 <groupId>org.apache.maven.plugins</groupId>
100 <artifactId>maven-checkstyle-plugin</artifactId>
101 <configuration>
102 <enableRulesSummary>false</enableRulesSummary>
103 <violationSeverity>warning</violationSeverity>
104 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
105 </configuration>
106 </plugin>
107 </plugins>
108 </build>
109</project>