Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 1 | <!-- |
| 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 Escoffier | 4a061b9 | 2013-05-15 14:00:59 +0000 | [diff] [blame] | 19 | <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 Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 20 | <parent> |
Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 21 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 22 | <artifactId>felix-parent</artifactId> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 23 | <version>2.1</version> |
| 24 | <relativePath>../../../pom/pom.xml</relativePath> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
| 28 | <artifactId>org.apache.felix.ipojo.api</artifactId> |
Clement Escoffier | ae546ab | 2013-05-15 14:01:59 +0000 | [diff] [blame^] | 29 | <version>1.10.1-SNAPSHOT</version> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 30 | <name>Apache Felix iPOJO API</name> |
Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 31 | |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 32 | <description> |
Clement Escoffier | 9136f98 | 2013-03-12 14:19:58 +0000 | [diff] [blame] | 33 | iPOJO API used to define component types and instances using Java. |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 34 | </description> |
| 35 | <url>http://felix.apache.org/site/apache-felix-ipojo-api.html</url> |
Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 36 | |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 37 | <build> |
| 38 | <plugins> |
| 39 | <plugin> |
| 40 | <groupId>org.apache.felix</groupId> |
| 41 | <artifactId>maven-bundle-plugin</artifactId> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 42 | <version>2.3.7</version> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 43 | <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 Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 52 | org.apache.felix.ipojo.composite;resolution:=optional, |
Clement Escoffier | 52bc2b6 | 2013-04-11 10:48:38 +0000 | [diff] [blame] | 53 | org.osgi.framework;version=1.3, |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 54 | * |
| 55 | </Import-Package> |
| 56 | <Export-Package> |
| 57 | org.apache.felix.ipojo.api, |
| 58 | org.apache.felix.ipojo.api.composite, |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 59 | 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 Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 62 | </Export-Package> |
Clement Escoffier | e8805cb | 2013-04-10 13:21:22 +0000 | [diff] [blame] | 63 | <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 Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 70 | </instructions> |
| 71 | </configuration> |
| 72 | </plugin> |
| 73 | <plugin> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 74 | <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 Escoffier | e623755 | 2013-03-20 09:51:42 +0000 | [diff] [blame] | 81 | <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 Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 101 | </plugins> |
| 102 | </build> |
| 103 | <dependencies> |
| 104 | <dependency> |
| 105 | <groupId>org.apache.felix</groupId> |
| 106 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | ae546ab | 2013-05-15 14:01:59 +0000 | [diff] [blame^] | 107 | <version>1.10.1-SNAPSHOT</version> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 108 | </dependency> |
| 109 | <dependency> |
| 110 | <groupId>org.apache.felix</groupId> |
| 111 | <artifactId>org.apache.felix.ipojo.composite</artifactId> |
Clement Escoffier | ae546ab | 2013-05-15 14:01:59 +0000 | [diff] [blame^] | 112 | <version>1.10.1-SNAPSHOT</version> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>org.apache.felix</groupId> |
| 116 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId> |
Clement Escoffier | 9888f53 | 2013-05-15 13:58:22 +0000 | [diff] [blame] | 117 | <version>1.10.0</version> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 118 | </dependency> |
| 119 | <dependency> |
| 120 | <groupId>asm</groupId> |
| 121 | <artifactId>asm-all</artifactId> |
| 122 | <version>3.3.1</version> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 123 | </dependency> |
| 124 | </dependencies> |
Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 125 | </project> |