blob: 2c34444a3337f3227067ef6b923cbdedfde2d45f [file] [log] [blame]
Clement Escoffiera3bf81a2008-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
Clement Escoffier035daba2009-06-21 12:25:22 +00009
Clement Escoffiera3bf81a2008-10-14 11:13:50 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier035daba2009-06-21 12:25:22 +000011
Clement Escoffiera3bf81a2008-10-14 11:13:50 +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 Escoffierc59f6c62009-01-19 14:25:57 +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/xsd/maven-4.0.0.xsd">
Clement Escoffierbfdccae2008-10-14 11:09:08 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
Clement Escoffierce123392009-04-30 14:00:40 +000022 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</version>
Clement Escoffierbfdccae2008-10-14 11:09:08 +000024 <relativePath>../../pom/pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
28 <groupId>org.apache.felix</groupId>
Clement Escoffier569a1052009-01-19 14:26:23 +000029 <version>1.3.0-SNAPSHOT</version>
Clement Escoffierbfdccae2008-10-14 11:09:08 +000030 <packaging>bundle</packaging>
31 <name>Apache Felix iPOJO Annotations</name>
32 <build>
33 <plugins>
34 <plugin>
35 <groupId>org.apache.maven.plugins</groupId>
36 <artifactId>maven-compiler-plugin</artifactId>
37 <configuration>
38 <source>1.5</source>
39 <target>1.5</target>
40 </configuration>
41 </plugin>
42 <plugin>
43 <groupId>org.apache.felix</groupId>
44 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier818e6922008-10-14 13:55:56 +000045 <version>1.4.3</version>
Clement Escoffierbfdccae2008-10-14 11:09:08 +000046 <extensions>true</extensions>
47 <configuration>
48 <instructions>
49 <Bundle-Name>iPOJO Annotations</Bundle-Name>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000050 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
51 <Bundle-Description> iPOJO Annotations </Bundle-Description>
52 <Export-Package> org.apache.felix.ipojo.annotations,
53 org.apache.felix.ipojo.handler.temporal,
Clement Escoffierd2ce8982008-11-25 14:47:49 +000054 org.apache.felix.ipojo.handlers.jmx,
55 org.apache.felix.ipojo.extender,
56 org.apache.felix.ipojo.whiteboard,
Clement Escoffier035daba2009-06-21 12:25:22 +000057 org.apache.felix.ipojo.handlers.event,
58 org.apache.felix.ipojo.transaction
Clement Escoffierb8fe1372008-11-20 15:51:56 +000059 </Export-Package>
60 <Include-Resource> META-INF/LICENCE=LICENSE,
61 META-INF/NOTICE=NOTICE </Include-Resource>
Clement Escoffierbfdccae2008-10-14 11:09:08 +000062 </instructions>
Clement Escoffier035daba2009-06-21 12:25:22 +000063 <obrRepository>NONE</obrRepository>
Clement Escoffierbfdccae2008-10-14 11:09:08 +000064 </configuration>
65 </plugin>
Clement Escoffierb8fe1372008-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 Escoffierbfdccae2008-10-14 11:09:08 +000089 </plugins>
90 </build>
Clement Escoffierf5fc5562007-08-14 13:44:32 +000091</project>