blob: d484aca2484584a4fa43bf307413e895b9616baa [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 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/maven-v4_0_0.xsd">
Clement Escoffierc5b8d122013-03-04 09:01:52 +000020 <parent>
Clement Escoffier9ccf4382009-07-21 18:45:19 +000021 <groupId>org.apache.felix</groupId>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000022 <artifactId>felix-parent</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000023 <version>2.1</version>
24 <relativePath>../../../pom/pom.xml</relativePath>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
Clement Escoffier615c9f22014-05-04 12:36:09 +000028 <properties>
29 <asm.version>5.0.2</asm.version>
30 </properties>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000031 <artifactId>org.apache.felix.ipojo.api</artifactId>
Clement Escoffierab16b072014-03-11 15:58:14 +000032 <version>1.11.3-SNAPSHOT</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000033 <name>Apache Felix iPOJO API</name>
Clement Escoffier9ccf4382009-07-21 18:45:19 +000034
Clement Escoffierc5b8d122013-03-04 09:01:52 +000035 <description>
Clement Escoffier9136f982013-03-12 14:19:58 +000036 iPOJO API used to define component types and instances using Java.
Clement Escoffierc5b8d122013-03-04 09:01:52 +000037 </description>
Clement Escoffierb76fae72013-05-28 04:37:54 +000038 <url>
39 http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/apache-felix-ipojo-api.html
40 </url>
Clement Escoffier9ccf4382009-07-21 18:45:19 +000041
Clement Escoffierc5b8d122013-03-04 09:01:52 +000042 <build>
43 <plugins>
44 <plugin>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000047 <version>2.3.7</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000048 <extensions>true</extensions>
49 <configuration>
50 <instructions>
51 <Bundle-SymbolicName>${project.artifactId}
52 </Bundle-SymbolicName>
53 <Bundle-DocURL>
Clement Escoffierb76fae72013-05-28 04:37:54 +000054 http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/apache-felix-ipojo-api.html
Clement Escoffierc5b8d122013-03-04 09:01:52 +000055 </Bundle-DocURL>
56 <Import-Package>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000057 org.apache.felix.ipojo.composite;resolution:=optional,
Clement Escoffier52bc2b62013-04-11 10:48:38 +000058 org.osgi.framework;version=1.3,
Clement Escoffierd1070302013-05-21 11:11:51 +000059 !org.apache.felix.ipojo.xml.parser,
60 !org.apache.felix.ipojo.annotations,
Clement Escoffierc5b8d122013-03-04 09:01:52 +000061 *
62 </Import-Package>
63 <Export-Package>
64 org.apache.felix.ipojo.api,
65 org.apache.felix.ipojo.api.composite,
Clement Escoffier615c9f22014-05-04 12:36:09 +000066 org.objectweb.asm.commons;version=${asm.version};-split-package:=merge-last,
67 org.objectweb.asm;version=${asm.version};-split-package:=merge-last,
68 org.objectweb.asm.signature;version=${asm.version};-split-package:=merge-last
Clement Escoffierc5b8d122013-03-04 09:01:52 +000069 </Export-Package>
Clement Escoffiere8805cb2013-04-10 13:21:22 +000070 <Private-Package>
71 org.objectweb.asm.commons,
72 org.objectweb.asm.signature,
73 org.objectweb.asm,
74 org.objectweb.asm.tree,
Clement Escoffierd1070302013-05-21 11:11:51 +000075 org.apache.felix.ipojo.manipulation*,
76 org.apache.felix.ipojo.manipulator*
Clement Escoffiere8805cb2013-04-10 13:21:22 +000077 </Private-Package>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000078 </instructions>
79 </configuration>
80 </plugin>
81 <plugin>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000082 <groupId>org.apache.maven.plugins</groupId>
83 <artifactId>maven-compiler-plugin</artifactId>
84 <configuration>
85 <target>1.5</target>
86 <source>1.5</source>
87 </configuration>
88 </plugin>
Clement Escoffiere6237552013-03-20 09:51:42 +000089 <plugin>
90 <groupId>org.codehaus.mojo</groupId>
91 <artifactId>animal-sniffer-maven-plugin</artifactId>
92 <version>1.7</version>
93 <configuration>
94 <signature>
95 <groupId>org.codehaus.mojo.signature</groupId>
96 <artifactId>java15</artifactId>
97 <version>1.0</version>
98 </signature>
99 </configuration>
100 <executions>
101 <execution>
102 <phase>test</phase>
103 <goals>
104 <goal>check</goal>
105 </goals>
106 </execution>
107 </executions>
108 </plugin>
Clement Escoffierc5b8d122013-03-04 09:01:52 +0000109 </plugins>
110 </build>
111 <dependencies>
112 <dependency>
113 <groupId>org.apache.felix</groupId>
114 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffierab16b072014-03-11 15:58:14 +0000115 <version>1.11.3-SNAPSHOT</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +0000116 </dependency>
117 <dependency>
118 <groupId>org.apache.felix</groupId>
119 <artifactId>org.apache.felix.ipojo.composite</artifactId>
Clement Escoffierab16b072014-03-11 15:58:14 +0000120 <version>1.11.3-SNAPSHOT</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +0000121 </dependency>
122 <dependency>
123 <groupId>org.apache.felix</groupId>
124 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffier6ab10432014-03-12 15:21:38 +0000125 <version>1.11.3-SNAPSHOT</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +0000126 </dependency>
127 <dependency>
128 <groupId>asm</groupId>
129 <artifactId>asm-all</artifactId>
130 <version>3.3.1</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +0000131 </dependency>
132 </dependencies>
Clement Escoffier9ccf4382009-07-21 18:45:19 +0000133</project>