blob: 1fba439c2369ad256765327ea8b4ee5e9f64166f [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 Escoffierab397832013-05-15 15:43:05 +000029 <version>1.10.0</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>
35 <url>http://felix.apache.org/site/apache-felix-ipojo-api.html</url>
Clement Escoffier9ccf4382009-07-21 18:45:19 +000036
Clement Escoffierc5b8d122013-03-04 09:01:52 +000037 <build>
38 <plugins>
39 <plugin>
40 <groupId>org.apache.felix</groupId>
41 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000042 <version>2.3.7</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000043 <extensions>true</extensions>
44 <configuration>
45 <instructions>
46 <Bundle-SymbolicName>${project.artifactId}
47 </Bundle-SymbolicName>
48 <Bundle-DocURL>
49 http://felix.apache.org/site/apache-felix-ipojo-api.html
50 </Bundle-DocURL>
51 <Import-Package>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000052 org.apache.felix.ipojo.composite;resolution:=optional,
Clement Escoffier52bc2b62013-04-11 10:48:38 +000053 org.osgi.framework;version=1.3,
Clement Escoffierc5b8d122013-03-04 09:01:52 +000054 *
55 </Import-Package>
56 <Export-Package>
57 org.apache.felix.ipojo.api,
58 org.apache.felix.ipojo.api.composite,
Clement Escoffiered4ca022013-03-13 15:27:20 +000059 org.objectweb.asm.commons;version=3.3.1;-split-package:=merge-last,
60 org.objectweb.asm;version=3.3.1;-split-package:=merge-last,
61 org.objectweb.asm.signature;version=3.3.1;-split-package:=merge-last
Clement Escoffierc5b8d122013-03-04 09:01:52 +000062 </Export-Package>
Clement Escoffiere8805cb2013-04-10 13:21:22 +000063 <Private-Package>
64 org.objectweb.asm.commons,
65 org.objectweb.asm.signature,
66 org.objectweb.asm,
67 org.objectweb.asm.tree,
68 org.apache.felix.ipojo.manipulation*
69 </Private-Package>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000070 </instructions>
71 </configuration>
72 </plugin>
73 <plugin>
Clement Escoffierc5b8d122013-03-04 09:01:52 +000074 <groupId>org.apache.maven.plugins</groupId>
75 <artifactId>maven-compiler-plugin</artifactId>
76 <configuration>
77 <target>1.5</target>
78 <source>1.5</source>
79 </configuration>
80 </plugin>
Clement Escoffiere6237552013-03-20 09:51:42 +000081 <plugin>
82 <groupId>org.codehaus.mojo</groupId>
83 <artifactId>animal-sniffer-maven-plugin</artifactId>
84 <version>1.7</version>
85 <configuration>
86 <signature>
87 <groupId>org.codehaus.mojo.signature</groupId>
88 <artifactId>java15</artifactId>
89 <version>1.0</version>
90 </signature>
91 </configuration>
92 <executions>
93 <execution>
94 <phase>test</phase>
95 <goals>
96 <goal>check</goal>
97 </goals>
98 </execution>
99 </executions>
100 </plugin>
Clement Escoffierc5b8d122013-03-04 09:01:52 +0000101 </plugins>
102 </build>
103 <dependencies>
104 <dependency>
105 <groupId>org.apache.felix</groupId>
106 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffierab397832013-05-15 15:43:05 +0000107 <version>1.10.0</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +0000108 </dependency>
109 <dependency>
110 <groupId>org.apache.felix</groupId>
111 <artifactId>org.apache.felix.ipojo.composite</artifactId>
Clement Escoffierab397832013-05-15 15:43:05 +0000112 <version>1.10.0</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +0000113 </dependency>
114 <dependency>
115 <groupId>org.apache.felix</groupId>
116 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffier9888f532013-05-15 13:58:22 +0000117 <version>1.10.0</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +0000118 </dependency>
119 <dependency>
120 <groupId>asm</groupId>
121 <artifactId>asm-all</artifactId>
122 <version>3.3.1</version>
Clement Escoffierc5b8d122013-03-04 09:01:52 +0000123 </dependency>
124 </dependencies>
Clement Escoffierab397832013-05-15 15:43:05 +0000125
126 <scm>
127 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.runtime-project-1.10.0/org.apache.felix.ipojo.api</connection>
128 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.runtime-project-1.10.0/org.apache.felix.ipojo.api</developerConnection>
129 <url>http://svn.apache.org/viewvc/felix/releases/?root=Apache-SVN/org.apache.felix.ipojo.runtime-project-1.10.0/org.apache.felix.ipojo.api</url>
130 </scm>
Clement Escoffier9ccf4382009-07-21 18:45:19 +0000131</project>