blob: 770d4be93ddd8ae09e42b3725c5d5f0b2e33a2b0 [file] [log] [blame]
Clement Escoffiera3bf81a2008-10-14 11:13:50 +00001<!--
Clement Escoffier0630c6b2009-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 Escoffier035daba2009-06-21 12:25:22 +00009
Clement Escoffier0630c6b2009-07-19 16:25:18 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier035daba2009-06-21 12:25:22 +000011
Clement Escoffier0630c6b2009-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 Escoffiera3bf81a2008-10-14 11:13:50 +000018-->
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 Escoffier0630c6b2009-07-19 16:25:18 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</version>
24 <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 Escoffiere9fc95f2009-07-21 18:27:46 +000029 <version>1.5.0-SNAPSHOT</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000030 <packaging>bundle</packaging>
31 <name>Apache Felix iPOJO Annotations</name>
32
33 <description>
Clement Escoffierfc2b6dd2009-09-04 05:56:14 +000034 iPOJO Annotation pack. contained annotations are used to define iPOJO component type.
Clement Escoffier0630c6b2009-07-19 16:25:18 +000035 </description>
36 <url>
37 http://felix.apache.org/site/how-to-use-ipojo-annotations.html
38 </url>
39
40
41 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-compiler-plugin</artifactId>
46 <configuration>
47 <source>1.5</source>
48 <target>1.5</target>
49 </configuration>
50 </plugin>
51 <plugin>
52 <groupId>org.apache.felix</groupId>
53 <artifactId>maven-bundle-plugin</artifactId>
54 <version>1.4.3</version>
55 <extensions>true</extensions>
56 <configuration>
57 <instructions>
Clement Escoffierfc2b6dd2009-09-04 05:56:14 +000058 <Bundle-Name>Apache Felix iPOJO Annotations</Bundle-Name>
59 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000060 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
61 <Bundle-Description> iPOJO Annotations </Bundle-Description>
62 <Bundle-DocURL>http://felix.apache.org/site/how-to-use-ipojo-annotations.html</Bundle-DocURL>
63 <Export-Package> org.apache.felix.ipojo.annotations,
64 org.apache.felix.ipojo.handler.temporal,
65 org.apache.felix.ipojo.handlers.jmx,
66 org.apache.felix.ipojo.extender,
67 org.apache.felix.ipojo.whiteboard,
68 org.apache.felix.ipojo.handlers.event,
69 org.apache.felix.ipojo.transaction
70 </Export-Package>
71 <Include-Resource> META-INF/LICENSE=LICENSE,
72 META-INF/NOTICE=NOTICE </Include-Resource>
73 </instructions>
74 <obrRepository>NONE</obrRepository>
75 </configuration>
76 </plugin>
77 <plugin>
78 <groupId>org.codehaus.mojo</groupId>
79 <artifactId>rat-maven-plugin</artifactId>
80 <configuration>
81 <excludeSubProjects>false</excludeSubProjects>
82 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
83 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
84 <excludes>
85 <param>doc/**/*</param>
86 <param>maven-eclipse.xml</param>
87 <param>.checkstyle</param>
88 <param>.externalToolBuilders/*</param>
89 <param>LICENSE.asm</param>
90 </excludes>
91 </configuration>
92 </plugin>
93 <plugin>
94 <groupId>org.apache.maven.plugins</groupId>
95 <artifactId>maven-checkstyle-plugin</artifactId>
96 <configuration>
97 <skip>true</skip>
98 </configuration>
99 </plugin>
100 </plugins>
101 </build>
102</project>