blob: c5b55bf8fdfa040c3aadc9eae44d61e0e9a7ebdd [file] [log] [blame]
Clement Escoffiereb41a152008-05-18 22:42:39 +00001<!--
Clement Escoffierbfa74d02009-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
Clement Escoffier30df4ce2011-08-20 13:53:15 +00009
Clement Escoffierbfa74d02009-07-19 16:25:18 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier30df4ce2011-08-20 13:53:15 +000011
Clement Escoffierbfa74d02009-07-19 16:25:18 +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 Escoffiereb41a152008-05-18 22:42:39 +000018-->
Clement Escoffierd93da472009-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 Escoffierbfa74d02009-07-19 16:25:18 +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 Escoffierbfa74d02009-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>
Clement Escoffier30df4ce2011-08-20 13:53:15 +000028
Clement Escoffier234d91b2009-07-21 17:48:05 +000029 <version>1.5.0-SNAPSHOT</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000030 <packaging>bundle</packaging>
31 <name>Apache Felix iPOJO Metadata</name>
Clement Escoffier30df4ce2011-08-20 13:53:15 +000032
Clement Escoffierbfa74d02009-07-19 16:25:18 +000033 <description>
34 iPOJO internal metadata model.
35 </description>
Clement Escoffier30df4ce2011-08-20 13:53:15 +000036
Clement Escoffierbfa74d02009-07-19 16:25:18 +000037 <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 Escoffier134b0062010-05-01 10:46:02 +000046 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Clement Escoffierbfa74d02009-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 Escoffier30df4ce2011-08-20 13:53:15 +000051 <Include-Resource>
Clement Escoffier1593ef52010-07-14 18:31:13 +000052 META-INF/LICENSE=LICENSE,
53 META-INF/NOTICE=NOTICE,
54 META-INF/DEPENDENCIES=DEPENDENCIES
55 </Include-Resource>
Clement Escoffierbfa74d02009-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>