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 | --> |
| 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"> |
| 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix-parent</artifactId> |
Clement Escoffier | 86215df | 2010-04-16 13:54:16 +0000 | [diff] [blame] | 23 | <version>1.2.1</version> |
Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 24 | <relativePath>../../pom/pom.xml</relativePath> |
| 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
| 28 | <artifactId>org.apache.felix.ipojo.api</artifactId> |
Clement Escoffier | 41308ed | 2010-04-16 14:42:05 +0000 | [diff] [blame] | 29 | <version>1.7.0-SNAPSHOT</version> |
Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 30 | <name>Apache Felix iPOJO API</name> |
Clement Escoffier | e97afad | 2011-02-23 10:55:38 +0000 | [diff] [blame] | 31 | |
Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 32 | <description> |
Clement Escoffier | 4ca5f3d | 2010-04-16 14:39:08 +0000 | [diff] [blame] | 33 | iPOJO API used to define component types and instances in Java. |
Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 34 | </description> |
| 35 | <url>http://felix.apache.org/site/apache-felix-ipojo-api.html</url> |
Clement Escoffier | e97afad | 2011-02-23 10:55:38 +0000 | [diff] [blame] | 36 | |
Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 37 | <build> |
| 38 | <plugins> |
| 39 | <plugin> |
| 40 | <groupId>org.apache.felix</groupId> |
| 41 | <artifactId>maven-bundle-plugin</artifactId> |
| 42 | <version>1.4.3</version> |
| 43 | <extensions>true</extensions> |
| 44 | <configuration> |
| 45 | <instructions> |
Clement Escoffier | 134b006 | 2010-05-01 10:46:02 +0000 | [diff] [blame] | 46 | <Bundle-SymbolicName>${project.artifactId} |
Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 47 | </Bundle-SymbolicName> |
| 48 | <Bundle-DocURL> |
| 49 | http://felix.apache.org/site/apache-felix-ipojo-api.html |
| 50 | </Bundle-DocURL> |
| 51 | <Import-Package> |
| 52 | !org.objectweb.asm.tree, |
| 53 | org.apache.felix.ipojo.composite;resolution:=optional, |
| 54 | * |
| 55 | </Import-Package> |
| 56 | <Export-Package> |
| 57 | org.apache.felix.ipojo.api, |
| 58 | org.apache.felix.ipojo.api.composite, |
| 59 | org.apache.felix.ipojo.manipulation, |
| 60 | org.apache.felix.ipojo.manipulation.annotations, |
Clement Escoffier | 73c4d51 | 2011-10-06 14:20:43 +0000 | [diff] [blame] | 61 | org.objectweb.asm.commons;version=3.3.1, |
| 62 | org.objectweb.asm;version=3.3.1, |
| 63 | org.objectweb.asm.signature;version=3.3.1 |
Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 64 | </Export-Package> |
Clement Escoffier | e97afad | 2011-02-23 10:55:38 +0000 | [diff] [blame] | 65 | <Include-Resource> |
Clement Escoffier | 1593ef5 | 2010-07-14 18:31:13 +0000 | [diff] [blame] | 66 | META-INF/LICENSE=LICENSE, |
Clement Escoffier | e97afad | 2011-02-23 10:55:38 +0000 | [diff] [blame] | 67 | META-INF/NOTICE=NOTICE, |
Clement Escoffier | 1593ef5 | 2010-07-14 18:31:13 +0000 | [diff] [blame] | 68 | META-INF/LICENSE.asm=LICENSE.asm, |
| 69 | META-INF/DEPENDENCIES=DEPENDENCIES |
Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 70 | </Include-Resource> |
| 71 | |
| 72 | </instructions> |
| 73 | </configuration> |
| 74 | </plugin> |
| 75 | <plugin> |
| 76 | <groupId>org.codehaus.mojo</groupId> |
| 77 | <artifactId>rat-maven-plugin</artifactId> |
| 78 | <configuration> |
| 79 | <excludeSubProjects>false</excludeSubProjects> |
| 80 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 81 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 82 | <excludes> |
| 83 | <param>doc/**/*</param> |
| 84 | <param>maven-eclipse.xml</param> |
| 85 | <param>.checkstyle</param> |
| 86 | <param>.externalToolBuilders/*</param> |
| 87 | <param>LICENSE.asm</param> |
| 88 | <param>.fbprefs</param> |
| 89 | </excludes> |
| 90 | </configuration> |
| 91 | </plugin> |
| 92 | <plugin> |
| 93 | <groupId>org.apache.maven.plugins</groupId> |
| 94 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 95 | <configuration> |
| 96 | <enableRulesSummary>false</enableRulesSummary> |
| 97 | <violationSeverity>warning</violationSeverity> |
| 98 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 99 | </configuration> |
| 100 | </plugin> |
| 101 | |
| 102 | </plugins> |
| 103 | </build> |
| 104 | <dependencies> |
| 105 | <dependency> |
| 106 | <groupId>org.apache.felix</groupId> |
| 107 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | e97afad | 2011-02-23 10:55:38 +0000 | [diff] [blame] | 108 | <version>1.8.0</version> |
Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.apache.felix</groupId> |
| 112 | <artifactId>org.apache.felix.ipojo.composite</artifactId> |
Clement Escoffier | e97afad | 2011-02-23 10:55:38 +0000 | [diff] [blame] | 113 | <version>1.9.0-SNAPSHOT</version> |
Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>org.apache.felix</groupId> |
| 117 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId> |
Clement Escoffier | e97afad | 2011-02-23 10:55:38 +0000 | [diff] [blame] | 118 | <version>1.8.0</version> |
Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 119 | </dependency> |
| 120 | <dependency> |
| 121 | <groupId>asm</groupId> |
| 122 | <artifactId>asm-all</artifactId> |
Clement Escoffier | fe4253c | 2011-10-05 14:56:59 +0000 | [diff] [blame] | 123 | <version>3.3.1</version> |
Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 124 | <exclusions> |
| 125 | <exclusion> |
| 126 | <groupId>asm</groupId> |
| 127 | <artifactId>asm-tree</artifactId> |
| 128 | </exclusion> |
| 129 | </exclusions> |
| 130 | </dependency> |
| 131 | </dependencies> |
Clement Escoffier | 9ccf438 | 2009-07-21 18:45:19 +0000 | [diff] [blame] | 132 | </project> |