blob: 82a90be1cb856652f0899c45f28cab4be1b9fdb8 [file] [log] [blame]
Clement Escoffier5f593302008-10-14 11:13:50 +00001<!--
Clement Escoffierbfa74d02009-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 Escoffierf4dd2f22009-06-21 12:25:22 +00009
Clement Escoffierbfa74d02009-07-19 16:25:18 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffierf4dd2f22009-06-21 12:25:22 +000011
Clement Escoffierbfa74d02009-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 Escoffier5f593302008-10-14 11:13:50 +000018-->
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 Escoffierbfa74d02009-07-19 16:25:18 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Clement Escoffier86215df2010-04-16 13:54:16 +000023 <version>1.2.1</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +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 Escoffier5d0b8882010-04-16 14:27:20 +000029 <version>1.7.0-SNAPSHOT</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000030 <packaging>bundle</packaging>
31 <name>Apache Felix iPOJO Annotations</name>
32
33 <description>
Clement Escoffier1d2f99a2009-09-04 05:56:14 +000034 iPOJO Annotation pack. contained annotations are used to define iPOJO component type.
Clement Escoffierbfa74d02009-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 Escoffier1d2f99a2009-09-04 05:56:14 +000058 <Bundle-Name>Apache Felix iPOJO Annotations</Bundle-Name>
Clement Escoffier134b0062010-05-01 10:46:02 +000059 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Clement Escoffierbfa74d02009-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>