blob: c060b574da3deb58a2c2ca09db4ae8158df8ae70 [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 Escoffierab397832013-05-15 15:43:05 +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 Escoffiered4ca022013-03-13 15:27:20 +000020 <parent>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000021 <groupId>org.apache.felix</groupId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000022 <artifactId>felix-parent</artifactId>
23 <version>2.1</version>
24 <relativePath>../../../pom/pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
Clement Escoffiera5649bd2013-05-15 15:43:37 +000028 <version>1.10.1-SNAPSHOT</version>
Clement Escoffiered4ca022013-03-13 15:27:20 +000029 <packaging>bundle</packaging>
30 <name>Apache Felix iPOJO Annotations</name>
Clement Escoffier6191b082010-08-29 09:05:18 +000031
Clement Escoffiered4ca022013-03-13 15:27:20 +000032 <description>
33 iPOJO Annotation pack. contained annotations are used to define iPOJO component type.
34 </description>
35 <url>
Clement Escoffierb76fae72013-05-28 04:37:54 +000036 http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-gettingstarted/how-to-use-ipojo-annotations.html
Clement Escoffiered4ca022013-03-13 15:27:20 +000037 </url>
Clement Escoffier6191b082010-08-29 09:05:18 +000038
Clement Escoffiered4ca022013-03-13 15:27:20 +000039
40 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.maven.plugins</groupId>
44 <artifactId>maven-compiler-plugin</artifactId>
45 <configuration>
46 <source>1.5</source>
47 <target>1.5</target>
48 </configuration>
49 </plugin>
50 <plugin>
51 <groupId>org.apache.felix</groupId>
52 <artifactId>maven-bundle-plugin</artifactId>
53 <version>2.3.7</version>
54 <extensions>true</extensions>
55 <configuration>
56 <instructions>
57 <Bundle-Name>Apache Felix iPOJO Annotations</Bundle-Name>
58 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
59 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
60 <Bundle-Description>iPOJO Annotations</Bundle-Description>
Clement Escoffierb76fae72013-05-28 04:37:54 +000061 <Bundle-DocURL>
62 http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-gettingstarted/how-to-use-ipojo-annotations.html
63 </Bundle-DocURL>
Clement Escoffiered4ca022013-03-13 15:27:20 +000064 <Export-Package>org.apache.felix.ipojo.annotations,
65 org.apache.felix.ipojo.handler.temporal,
66 org.apache.felix.ipojo.handlers.jmx,
67 org.apache.felix.ipojo.extender,
68 org.apache.felix.ipojo.whiteboard,
69 org.apache.felix.ipojo.handlers.event,
70 org.apache.felix.ipojo.transaction
71 </Export-Package>
72 </instructions>
73 <obrRepository>NONE</obrRepository>
74 </configuration>
75 </plugin>
76 </plugins>
77 </build>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000078</project>