blob: e54a585754d3d49669c38d0b4524e62a5b88d09e [file] [log] [blame]
Clement Escoffier9ccf4382009-07-21 18:45:19 +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 Escoffierc5b8d122013-03-04 09:01:52 +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/maven-v4_0_0.xsd">
21 <parent>
Clement Escoffier9ccf4382009-07-21 18:45:19 +000022 <groupId>org.apache.felix</groupId>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000023 <artifactId>felix-parent</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000024 <version>2.1</version>
25 <relativePath>../../../pom/pom.xml</relativePath>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000026 </parent>
27 <modelVersion>4.0.0</modelVersion>
28 <packaging>bundle</packaging>
29 <artifactId>org.apache.felix.ipojo.api</artifactId>
Clement Escoffier9136f982013-03-12 14:19:58 +000030 <version>1.9.0-SNAPSHOT</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000031 <name>Apache Felix iPOJO API</name>
Clement Escoffier9ccf4382009-07-21 18:45:19 +000032
Clement Escoffierc5b8d122013-03-04 09:01:52 +000033 <description>
Clement Escoffier9136f982013-03-12 14:19:58 +000034 iPOJO API used to define component types and instances using Java.
Clement Escoffierc5b8d122013-03-04 09:01:52 +000035 </description>
36 <url>http://felix.apache.org/site/apache-felix-ipojo-api.html</url>
Clement Escoffier9ccf4382009-07-21 18:45:19 +000037
Clement Escoffierc5b8d122013-03-04 09:01:52 +000038 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.felix</groupId>
42 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000043 <version>2.3.7</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000044 <extensions>true</extensions>
45 <configuration>
46 <instructions>
47 <Bundle-SymbolicName>${project.artifactId}
48 </Bundle-SymbolicName>
49 <Bundle-DocURL>
50 http://felix.apache.org/site/apache-felix-ipojo-api.html
51 </Bundle-DocURL>
52 <Import-Package>
53 !org.objectweb.asm.tree,
54 org.apache.felix.ipojo.composite;resolution:=optional,
55 *
56 </Import-Package>
57 <Export-Package>
58 org.apache.felix.ipojo.api,
59 org.apache.felix.ipojo.api.composite,
Clement Escoffiered4ca022013-03-13 15:27:20 +000060 org.objectweb.asm.commons;version=3.3.1;-split-package:=merge-last,
61 org.objectweb.asm;version=3.3.1;-split-package:=merge-last,
62 org.objectweb.asm.signature;version=3.3.1;-split-package:=merge-last
Clement Escoffierc5b8d122013-03-04 09:01:52 +000063 </Export-Package>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000064 </instructions>
65 </configuration>
66 </plugin>
67 <plugin>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000068 <groupId>org.apache.maven.plugins</groupId>
69 <artifactId>maven-compiler-plugin</artifactId>
70 <configuration>
71 <target>1.5</target>
72 <source>1.5</source>
73 </configuration>
74 </plugin>
75 </plugins>
76 </build>
77 <dependencies>
78 <dependency>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier9136f982013-03-12 14:19:58 +000081 <version>1.9.0-SNAPSHOT</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000082 </dependency>
83 <dependency>
84 <groupId>org.apache.felix</groupId>
85 <artifactId>org.apache.felix.ipojo.composite</artifactId>
86 <version>1.9.0-SNAPSHOT</version>
87 </dependency>
88 <dependency>
89 <groupId>org.apache.felix</groupId>
90 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000091 <version>1.9.0-SNAPSHOT</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000092 </dependency>
93 <dependency>
94 <groupId>asm</groupId>
95 <artifactId>asm-all</artifactId>
96 <version>3.3.1</version>
97 <exclusions>
98 <exclusion>
99 <groupId>asm</groupId>
100 <artifactId>asm-tree</artifactId>
101 </exclusion>
102 </exclusions>
103 </dependency>
104 </dependencies>
Clement Escoffier9ccf4382009-07-21 18:45:19 +0000105</project>