blob: 9f0ac4b8d4c3b78684f84529420b3ad636f08cd4 [file] [log] [blame]
Clement Escoffier3482f242008-10-14 09:43:32 +00001<!--
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
Clement Escoffier0b93f382009-07-03 13:16:24 +00009
Clement Escoffier3482f242008-10-14 09:43:32 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier0b93f382009-07-03 13:16:24 +000011
Clement Escoffier3482f242008-10-14 09:43:32 +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.
18-->
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 Escoffierce0e1e52008-03-28 15:33:36 +000020 <parent>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000021 <groupId>org.apache.felix</groupId>
Clement Escoffiere2591592009-04-30 14:00:40 +000022 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</version>
Clement Escoffier7d116ff2008-03-29 15:04:02 +000024 <relativePath>../../pom/pom.xml</relativePath>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier7d116ff2008-03-29 15:04:02 +000028 <groupId>org.apache.felix</groupId>
Clement Escoffierf971b742009-01-19 13:57:22 +000029 <version>1.3.0-SNAPSHOT</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000030 <name>Apache Felix iPOJO Maven Plugin</name>
31 <packaging>maven-plugin</packaging>
32 <dependencies>
33 <dependency>
34 <groupId>org.apache.maven</groupId>
35 <artifactId>maven-plugin-api</artifactId>
36 <version>2.0</version>
37 <scope>compile</scope>
38 </dependency>
39 <dependency>
40 <groupId>org.apache.maven</groupId>
41 <artifactId>maven-archiver</artifactId>
42 <version>2.0</version>
43 </dependency>
44 <dependency>
45 <groupId>org.codehaus.plexus</groupId>
46 <artifactId>plexus-utils</artifactId>
47 <version>1.1</version>
48 </dependency>
49 <dependency>
50 <groupId>org.apache.maven</groupId>
51 <artifactId>maven-artifact</artifactId>
52 <version>2.0</version>
53 </dependency>
54 <dependency>
55 <groupId>xerces</groupId>
56 <artifactId>xercesImpl</artifactId>
57 <version>2.4.0</version>
58 </dependency>
59 <dependency>
Clement Escoffier4a12e332008-04-07 13:29:34 +000060 <groupId>org.apache.felix</groupId>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000061 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier0b93f382009-07-03 13:16:24 +000062 <version>${pom.version}</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000063 </dependency>
64 <dependency>
Clement Escoffier4a12e332008-04-07 13:29:34 +000065 <groupId>org.apache.felix</groupId>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000066 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffier0b93f382009-07-03 13:16:24 +000067 <version>${pom.version}</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000068 </dependency>
69 </dependencies>
Clement Escoffier31f25df2008-11-20 15:51:56 +000070 <build>
71 <plugins>
72 <plugin>
73 <groupId>org.codehaus.mojo</groupId>
74 <artifactId>rat-maven-plugin</artifactId>
75 <configuration>
76 <excludeSubProjects>false</excludeSubProjects>
77 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
78 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
79 <excludes>
80 <param>doc/**/*</param>
81 <param>maven-eclipse.xml</param>
82 <param>.checkstyle</param>
83 <param>.externalToolBuilders/*</param>
84 <param>LICENSE.asm</param>
85 <param>**/archetype-resources/**/*</param>
86 <param>**/archetype.xml</param>
87 </excludes>
88 </configuration>
89 </plugin>
90 <plugin>
91 <groupId>org.apache.maven.plugins</groupId>
92 <artifactId>maven-checkstyle-plugin</artifactId>
93 <configuration>
94 <enableRulesSummary>false</enableRulesSummary>
95 <violationSeverity>warning</violationSeverity>
96 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
97 </configuration>
98 </plugin>
99 </plugins>
100 </build>
Clement Escoffiere7e28ea2008-10-14 09:02:35 +0000101</project>