blob: 65b220e71441993dda8a342159d7fa701f157ab9 [file] [log] [blame]
Clement Escoffierec471f52008-10-14 09:43:32 +00001<!--
Clement Escoffierb062a702009-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 Escoffierc80b73d2009-07-03 13:16:24 +00009
Clement Escoffierb062a702009-07-17 08:10:38 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffierc80b73d2009-07-03 13:16:24 +000011
Clement Escoffierb062a702009-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 Escoffierec471f52008-10-14 09:43:32 +000018-->
Clement Escoffier62a1be52009-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 Escoffierb062a702009-07-17 08:10:38 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Clement Escoffier5ab0b442010-04-16 13:54:16 +000023 <version>1.2.1</version>
Clement Escoffierb062a702009-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 Escoffier41c36a32010-04-16 14:05:52 +000029 <version>1.7.0-SNAPSHOT</version>
Clement Escoffierb062a702009-07-17 08:10:38 +000030 <name>Apache Felix iPOJO Maven Plugin</name>
31 <packaging>maven-plugin</packaging>
Clement Escoffier0630c6b2009-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 Escoffierb062a702009-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 Escoffier14bbbb22010-04-12 06:27:58 +000070 <version>1.4.0</version>
Clement Escoffier426b5ad2009-08-25 16:44:42 +000071 </dependency>
Clement Escoffierb062a702009-07-17 08:10:38 +000072 <dependency>
73 <groupId>org.apache.felix</groupId>
74 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffierfe606902010-05-01 10:46:02 +000075 <version>${project.version}</version>
Clement Escoffierb062a702009-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>