blob: 082b34f647524785fc08f2051f157aff191c260a [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
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 Escoffierb8fe1372008-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 Escoffierbfdccae2008-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 Escoffier818e6922008-10-14 13:55:56 +000030 <version>1.1.0-SNAPSHOT</version>
Clement Escoffierbfdccae2008-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 Escoffier818e6922008-10-14 13:55:56 +000046 <version>1.4.3</version>
Clement Escoffierbfdccae2008-10-14 11:09:08 +000047 <extensions>true</extensions>
48 <configuration>
49 <instructions>
50 <Bundle-Name>iPOJO Annotations</Bundle-Name>
Clement Escoffierb8fe1372008-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,
55 org.apache.felix.ipojo.handlers.jmx
56 </Export-Package>
57 <Include-Resource> META-INF/LICENCE=LICENSE,
58 META-INF/NOTICE=NOTICE </Include-Resource>
Clement Escoffierbfdccae2008-10-14 11:09:08 +000059 </instructions>
60 </configuration>
61 </plugin>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000062 <plugin>
63 <groupId>org.codehaus.mojo</groupId>
64 <artifactId>rat-maven-plugin</artifactId>
65 <configuration>
66 <excludeSubProjects>false</excludeSubProjects>
67 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
68 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
69 <excludes>
70 <param>doc/**/*</param>
71 <param>maven-eclipse.xml</param>
72 <param>.checkstyle</param>
73 <param>.externalToolBuilders/*</param>
74 <param>LICENSE.asm</param>
75 </excludes>
76 </configuration>
77 </plugin>
78 <plugin>
79 <groupId>org.apache.maven.plugins</groupId>
80 <artifactId>maven-checkstyle-plugin</artifactId>
81 <configuration>
82 <skip>true</skip>
83 </configuration>
84 </plugin>
Clement Escoffierbfdccae2008-10-14 11:09:08 +000085 </plugins>
86 </build>
Clement Escoffierf5fc5562007-08-14 13:44:32 +000087</project>