blob: d10eab616540d0831cc2c92b540863d0847a6226 [file] [log] [blame]
Clement Escoffier5f593302008-10-14 11:13:50 +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
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.
18-->
Clement Escoffier31f25df2008-11-20 15:51:56 +000019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Clement Escoffiera32364e2008-10-14 11:09:08 +000021 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>felix</artifactId>
24 <version>1.0.2</version>
25 <relativePath>../../pom/pom.xml</relativePath>
26 </parent>
27 <modelVersion>4.0.0</modelVersion>
28 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
29 <groupId>org.apache.felix</groupId>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +000030 <version>1.1.0-SNAPSHOT</version>
Clement Escoffiera32364e2008-10-14 11:09:08 +000031 <packaging>bundle</packaging>
32 <name>Apache Felix iPOJO Annotations</name>
33 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-compiler-plugin</artifactId>
38 <configuration>
39 <source>1.5</source>
40 <target>1.5</target>
41 </configuration>
42 </plugin>
43 <plugin>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +000046 <version>1.4.3</version>
Clement Escoffiera32364e2008-10-14 11:09:08 +000047 <extensions>true</extensions>
48 <configuration>
49 <instructions>
50 <Bundle-Name>iPOJO Annotations</Bundle-Name>
Clement Escoffier31f25df2008-11-20 15:51:56 +000051 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
52 <Bundle-Description> iPOJO Annotations </Bundle-Description>
53 <Export-Package> org.apache.felix.ipojo.annotations,
54 org.apache.felix.ipojo.handler.temporal,
Clement Escoffier0b07ca42008-11-25 14:47:49 +000055 org.apache.felix.ipojo.handlers.jmx,
56 org.apache.felix.ipojo.extender,
57 org.apache.felix.ipojo.whiteboard,
58 org.apache.felix.ipojo.handlers.event
Clement Escoffier31f25df2008-11-20 15:51:56 +000059 </Export-Package>
60 <Include-Resource> META-INF/LICENCE=LICENSE,
61 META-INF/NOTICE=NOTICE </Include-Resource>
Clement Escoffiera32364e2008-10-14 11:09:08 +000062 </instructions>
Clement Escoffier25137e32009-01-14 14:07:17 +000063 <obrRepository>NONE</obrRepository>
Clement Escoffiera32364e2008-10-14 11:09:08 +000064 </configuration>
65 </plugin>
Clement Escoffier31f25df2008-11-20 15:51:56 +000066 <plugin>
67 <groupId>org.codehaus.mojo</groupId>
68 <artifactId>rat-maven-plugin</artifactId>
69 <configuration>
70 <excludeSubProjects>false</excludeSubProjects>
71 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
72 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
73 <excludes>
74 <param>doc/**/*</param>
75 <param>maven-eclipse.xml</param>
76 <param>.checkstyle</param>
77 <param>.externalToolBuilders/*</param>
78 <param>LICENSE.asm</param>
79 </excludes>
80 </configuration>
81 </plugin>
82 <plugin>
83 <groupId>org.apache.maven.plugins</groupId>
84 <artifactId>maven-checkstyle-plugin</artifactId>
85 <configuration>
86 <skip>true</skip>
87 </configuration>
88 </plugin>
Clement Escoffiera32364e2008-10-14 11:09:08 +000089 </plugins>
90 </build>
Clement Escoffierf5fc5562007-08-14 13:44:32 +000091</project>