blob: 2c34444a3337f3227067ef6b923cbdedfde2d45f [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
Clement Escoffierf4dd2f22009-06-21 12:25:22 +00009
Clement Escoffier5f593302008-10-14 11:13:50 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffierf4dd2f22009-06-21 12:25:22 +000011
Clement Escoffier5f593302008-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 Escoffier0585e0d2009-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 Escoffiera32364e2008-10-14 11:09:08 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
Clement Escoffiere2591592009-04-30 14:00:40 +000022 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</version>
Clement Escoffiera32364e2008-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 Escoffiere84a6922009-01-19 14:26:23 +000029 <version>1.3.0-SNAPSHOT</version>
Clement Escoffiera32364e2008-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 Escoffier2e9f4b32008-10-14 13:55:56 +000045 <version>1.4.3</version>
Clement Escoffiera32364e2008-10-14 11:09:08 +000046 <extensions>true</extensions>
47 <configuration>
48 <instructions>
49 <Bundle-Name>iPOJO Annotations</Bundle-Name>
Clement Escoffier31f25df2008-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 Escoffier0b07ca42008-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 Escoffierf4dd2f22009-06-21 12:25:22 +000057 org.apache.felix.ipojo.handlers.event,
58 org.apache.felix.ipojo.transaction
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 Escoffierf4dd2f22009-06-21 12:25:22 +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>