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 | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 19 | <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 Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 22 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 23 | <artifactId>felix-parent</artifactId> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 24 | <version>2.1</version> |
| 25 | <relativePath>../../../pom/pom.xml</relativePath> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 26 | </parent> |
| 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <packaging>bundle</packaging> |
| 29 | <artifactId>org.apache.felix.ipojo.api</artifactId> |
Clement Escoffier | 9136f98 | 2013-03-12 14:19:58 +0000 | [diff] [blame] | 30 | <version>1.9.0-SNAPSHOT</version> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 31 | <name>Apache Felix iPOJO API</name> |
Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 32 | |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 33 | <description> |
Clement Escoffier | 9136f98 | 2013-03-12 14:19:58 +0000 | [diff] [blame] | 34 | iPOJO API used to define component types and instances using Java. |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 35 | </description> |
| 36 | <url>http://felix.apache.org/site/apache-felix-ipojo-api.html</url> |
Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 37 | |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 38 | <build> |
| 39 | <plugins> |
| 40 | <plugin> |
| 41 | <groupId>org.apache.felix</groupId> |
| 42 | <artifactId>maven-bundle-plugin</artifactId> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 43 | <version>2.3.7</version> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 44 | <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> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 53 | org.apache.felix.ipojo.composite;resolution:=optional, |
Clement Escoffier | 52bc2b6 | 2013-04-11 10:48:38 +0000 | [diff] [blame] | 54 | org.osgi.framework;version=1.3, |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 55 | * |
| 56 | </Import-Package> |
| 57 | <Export-Package> |
| 58 | org.apache.felix.ipojo.api, |
| 59 | org.apache.felix.ipojo.api.composite, |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 60 | 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 Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 63 | </Export-Package> |
Clement Escoffier | e8805cb | 2013-04-10 13:21:22 +0000 | [diff] [blame] | 64 | <Private-Package> |
| 65 | org.objectweb.asm.commons, |
| 66 | org.objectweb.asm.signature, |
| 67 | org.objectweb.asm, |
| 68 | org.objectweb.asm.tree, |
| 69 | org.apache.felix.ipojo.manipulation* |
| 70 | </Private-Package> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 71 | </instructions> |
| 72 | </configuration> |
| 73 | </plugin> |
| 74 | <plugin> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 75 | <groupId>org.apache.maven.plugins</groupId> |
| 76 | <artifactId>maven-compiler-plugin</artifactId> |
| 77 | <configuration> |
| 78 | <target>1.5</target> |
| 79 | <source>1.5</source> |
| 80 | </configuration> |
| 81 | </plugin> |
Clement Escoffier | e623755 | 2013-03-20 09:51:42 +0000 | [diff] [blame] | 82 | <plugin> |
| 83 | <groupId>org.codehaus.mojo</groupId> |
| 84 | <artifactId>animal-sniffer-maven-plugin</artifactId> |
| 85 | <version>1.7</version> |
| 86 | <configuration> |
| 87 | <signature> |
| 88 | <groupId>org.codehaus.mojo.signature</groupId> |
| 89 | <artifactId>java15</artifactId> |
| 90 | <version>1.0</version> |
| 91 | </signature> |
| 92 | </configuration> |
| 93 | <executions> |
| 94 | <execution> |
| 95 | <phase>test</phase> |
| 96 | <goals> |
| 97 | <goal>check</goal> |
| 98 | </goals> |
| 99 | </execution> |
| 100 | </executions> |
| 101 | </plugin> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 102 | </plugins> |
| 103 | </build> |
| 104 | <dependencies> |
| 105 | <dependency> |
| 106 | <groupId>org.apache.felix</groupId> |
| 107 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | 9136f98 | 2013-03-12 14:19:58 +0000 | [diff] [blame] | 108 | <version>1.9.0-SNAPSHOT</version> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.apache.felix</groupId> |
| 112 | <artifactId>org.apache.felix.ipojo.composite</artifactId> |
| 113 | <version>1.9.0-SNAPSHOT</version> |
| 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>org.apache.felix</groupId> |
| 117 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId> |
Clement Escoffier | 9888f53 | 2013-05-15 13:58:22 +0000 | [diff] [blame^] | 118 | <version>1.10.0</version> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 119 | </dependency> |
| 120 | <dependency> |
| 121 | <groupId>asm</groupId> |
| 122 | <artifactId>asm-all</artifactId> |
| 123 | <version>3.3.1</version> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 124 | </dependency> |
| 125 | </dependencies> |
Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 126 | </project> |