blob: e69efb8cc579372a915f3deaa5596e713a39f3da [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>
28 <artifactId>org.apache.felix.ipojo.api</artifactId>
Clement Escoffiera5649bd2013-05-15 15:43:37 +000029 <version>1.10.1-SNAPSHOT</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000030 <name>Apache Felix iPOJO API</name>
Clement Escoffier9ccf4382009-07-21 18:45:19 +000031
Clement Escoffierc5b8d122013-03-04 09:01:52 +000032 <description>
Clement Escoffier9136f982013-03-12 14:19:58 +000033 iPOJO API used to define component types and instances using Java.
Clement Escoffierc5b8d122013-03-04 09:01:52 +000034 </description>
Clement Escoffierb76fae72013-05-28 04:37:54 +000035 <url>
36 http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/apache-felix-ipojo-api.html
37 </url>
Clement Escoffier9ccf4382009-07-21 18:45:19 +000038
Clement Escoffierc5b8d122013-03-04 09:01:52 +000039 <build>
40 <plugins>
41 <plugin>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000044 <version>2.3.7</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000045 <extensions>true</extensions>
46 <configuration>
47 <instructions>
48 <Bundle-SymbolicName>${project.artifactId}
49 </Bundle-SymbolicName>
50 <Bundle-DocURL>
Clement Escoffierb76fae72013-05-28 04:37:54 +000051 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 +000052 </Bundle-DocURL>
53 <Import-Package>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000054 org.apache.felix.ipojo.composite;resolution:=optional,
Clement Escoffier52bc2b62013-04-11 10:48:38 +000055 org.osgi.framework;version=1.3,
Clement Escoffierd1070302013-05-21 11:11:51 +000056 !org.apache.felix.ipojo.xml.parser,
57 !org.apache.felix.ipojo.annotations,
Clement Escoffierc5b8d122013-03-04 09:01:52 +000058 *
59 </Import-Package>
60 <Export-Package>
61 org.apache.felix.ipojo.api,
62 org.apache.felix.ipojo.api.composite,
Clement Escoffiered4ca022013-03-13 15:27:20 +000063 org.objectweb.asm.commons;version=3.3.1;-split-package:=merge-last,
64 org.objectweb.asm;version=3.3.1;-split-package:=merge-last,
65 org.objectweb.asm.signature;version=3.3.1;-split-package:=merge-last
Clement Escoffierc5b8d122013-03-04 09:01:52 +000066 </Export-Package>
Clement Escoffiere8805cb2013-04-10 13:21:22 +000067 <Private-Package>
68 org.objectweb.asm.commons,
69 org.objectweb.asm.signature,
70 org.objectweb.asm,
71 org.objectweb.asm.tree,
Clement Escoffierd1070302013-05-21 11:11:51 +000072 org.apache.felix.ipojo.manipulation*,
73 org.apache.felix.ipojo.manipulator*
Clement Escoffiere8805cb2013-04-10 13:21:22 +000074 </Private-Package>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000075 </instructions>
76 </configuration>
77 </plugin>
78 <plugin>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000079 <groupId>org.apache.maven.plugins</groupId>
80 <artifactId>maven-compiler-plugin</artifactId>
81 <configuration>
82 <target>1.5</target>
83 <source>1.5</source>
84 </configuration>
85 </plugin>
Clement Escoffiere6237552013-03-20 09:51:42 +000086 <plugin>
87 <groupId>org.codehaus.mojo</groupId>
88 <artifactId>animal-sniffer-maven-plugin</artifactId>
89 <version>1.7</version>
90 <configuration>
91 <signature>
92 <groupId>org.codehaus.mojo.signature</groupId>
93 <artifactId>java15</artifactId>
94 <version>1.0</version>
95 </signature>
96 </configuration>
97 <executions>
98 <execution>
99 <phase>test</phase>
100 <goals>
101 <goal>check</goal>
102 </goals>
103 </execution>
104 </executions>
105 </plugin>
Clement Escoffierc5b8d122013-03-04 09:01:52 +0000106 </plugins>
107 </build>
108 <dependencies>
109 <dependency>
110 <groupId>org.apache.felix</groupId>
111 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffiera5649bd2013-05-15 15:43:37 +0000112 <version>1.10.1-SNAPSHOT</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +0000113 </dependency>
114 <dependency>
115 <groupId>org.apache.felix</groupId>
116 <artifactId>org.apache.felix.ipojo.composite</artifactId>
Clement Escoffiera5649bd2013-05-15 15:43:37 +0000117 <version>1.10.1-SNAPSHOT</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +0000118 </dependency>
119 <dependency>
120 <groupId>org.apache.felix</groupId>
121 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffierc34ba5c2013-05-16 08:12:53 +0000122 <version>1.10.1-SNAPSHOT</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +0000123 </dependency>
124 <dependency>
125 <groupId>asm</groupId>
126 <artifactId>asm-all</artifactId>
127 <version>3.3.1</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +0000128 </dependency>
129 </dependencies>
Clement Escoffier9ccf4382009-07-21 18:45:19 +0000130</project>