blob: ed7b692f5e591261df87af8fbdd8f5572bd85460 [file] [log] [blame]
Clement Escoffier9236df92008-05-18 22:42:39 +00001<!--
Clement Escoffier0630c6b2009-07-19 16:25:18 +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
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.
Clement Escoffier9236df92008-05-18 22:42:39 +000018-->
Clement Escoffier045a66d2009-01-19 10:33:13 +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 Escoffier0630c6b2009-07-19 16:25:18 +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 Escoffier0630c6b2009-07-19 16:25:18 +000024 <relativePath>../../pom/pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
28 <groupId>org.apache.felix</groupId>
Clement Escoffiera21d3d32009-07-21 17:48:05 +000029 <version>1.5.0-SNAPSHOT</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000030 <packaging>bundle</packaging>
31 <name>Apache Felix iPOJO Metadata</name>
32
33 <description>
34 iPOJO internal metadata model.
35 </description>
36
37 <build>
38 <plugins>
39 <plugin>
40 <groupId>org.apache.felix</groupId>
41 <artifactId>maven-bundle-plugin</artifactId>
42 <version>1.4.3</version>
43 <extensions>true</extensions>
44 <configuration>
45 <instructions>
Clement Escoffierfe606902010-05-01 10:46:02 +000046 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000047 <Bundle-Name>iPOJO Metadata</Bundle-Name>
48 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
49 <Bundle-Description> iPOJO Metadata </Bundle-Description>
50 <Export-Package> org.apache.felix.ipojo.metadata </Export-Package>
Clement Escoffierdd7c1152010-07-14 18:31:13 +000051 <Include-Resource>
52 META-INF/LICENSE=LICENSE,
53 META-INF/NOTICE=NOTICE,
54 META-INF/DEPENDENCIES=DEPENDENCIES
55 </Include-Resource>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000056 </instructions>
57 <obrRepository>NONE</obrRepository>
58 </configuration>
59 </plugin>
60 <plugin>
61 <groupId>org.codehaus.mojo</groupId>
62 <artifactId>rat-maven-plugin</artifactId>
63 <configuration>
64 <excludeSubProjects>false</excludeSubProjects>
65 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
66 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
67 <excludes>
68 <param>doc/*</param>
69 <param>maven-eclipse.xml</param>
70 <param>.checkstyle</param>
71 <param>.externalToolBuilders/*</param>
72 </excludes>
73 </configuration>
74 </plugin>
75 <plugin>
76 <groupId>org.apache.maven.plugins</groupId>
77 <artifactId>maven-checkstyle-plugin</artifactId>
78 <configuration>
79 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
80 </configuration>
81 </plugin>
82 </plugins>
83 </build>
84</project>