Clement Escoffier | 9e935de | 2008-10-14 10:52:53 +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 | 31f25df | 2008-11-20 15:51:56 +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"> |
Clement Escoffier | b6a333d | 2008-10-14 10:51:53 +0000 | [diff] [blame] | 21 | <parent> |
| 22 | <groupId>org.apache.felix</groupId> |
| 23 | <artifactId>felix</artifactId> |
| 24 | <version>1.0.2</version> |
| 25 | <relativePath>../../pom/pom.xml</relativePath> |
| 26 | </parent> |
| 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <packaging>bundle</packaging> |
| 29 | <name>Apache Felix iPOJO Composite</name> |
| 30 | <artifactId>org.apache.felix.ipojo.composite</artifactId> |
| 31 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 32 | <version>1.1.0-SNAPSHOT</version> |
Clement Escoffier | b6a333d | 2008-10-14 10:51:53 +0000 | [diff] [blame] | 33 | <dependencies> |
| 34 | <dependency> |
| 35 | <groupId>org.apache.felix</groupId> |
| 36 | <artifactId>org.osgi.core</artifactId> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 37 | <version>1.0.1</version> |
Clement Escoffier | b6a333d | 2008-10-14 10:51:53 +0000 | [diff] [blame] | 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>org.apache.felix</groupId> |
| 41 | <artifactId>org.osgi.compendium</artifactId> |
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 42 | <version>1.2.0</version> |
Clement Escoffier | b6a333d | 2008-10-14 10:51:53 +0000 | [diff] [blame] | 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.apache.felix</groupId> |
| 46 | <artifactId>org.apache.felix.ipojo.metadata</artifactId> |
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 47 | <version>1.1.0-SNAPSHOT</version> |
Clement Escoffier | b6a333d | 2008-10-14 10:51:53 +0000 | [diff] [blame] | 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.apache.felix</groupId> |
| 51 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId> |
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 52 | <version>1.1.0-SNAPSHOT</version> |
Clement Escoffier | b6a333d | 2008-10-14 10:51:53 +0000 | [diff] [blame] | 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.apache.felix</groupId> |
| 56 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 57 | <version>1.1.0-SNAPSHOT</version> |
Clement Escoffier | b6a333d | 2008-10-14 10:51:53 +0000 | [diff] [blame] | 58 | </dependency> |
| 59 | </dependencies> |
| 60 | <build> |
| 61 | <plugins> |
| 62 | <plugin> |
| 63 | <groupId>org.apache.felix</groupId> |
| 64 | <artifactId>maven-bundle-plugin</artifactId> |
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 65 | <version>1.4.3</version> |
Clement Escoffier | b6a333d | 2008-10-14 10:51:53 +0000 | [diff] [blame] | 66 | <extensions>true</extensions> |
| 67 | <configuration> |
| 68 | <instructions> |
Clement Escoffier | 8d88835 | 2008-12-10 12:29:41 +0000 | [diff] [blame] | 69 | <Bundle-Name>Apache Felix iPOJO Composite</Bundle-Name> |
| 70 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 71 | <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor> |
| 72 | <Bundle-Description> iPOJO Composititon Framework |
Clement Escoffier | b6a333d | 2008-10-14 10:51:53 +0000 | [diff] [blame] | 73 | </Bundle-Description> |
| 74 | <Bundle-DocURL> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 75 | http://felix.apache.org/site/apache-felix-ipojo.html |
Clement Escoffier | b6a333d | 2008-10-14 10:51:53 +0000 | [diff] [blame] | 76 | </Bundle-DocURL> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 77 | <Import-Package> org.apache.felix.ipojo, |
Clement Escoffier | b6a333d | 2008-10-14 10:51:53 +0000 | [diff] [blame] | 78 | org.apache.felix.ipojo.architecture, |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 79 | org.apache.felix.ipojo.context, org.apache.felix.ipojo.metadata, |
| 80 | org.apache.felix.ipojo.parser, org.apache.felix.ipojo.util, |
| 81 | org.osgi.framework;version=1.3 </Import-Package> |
| 82 | <Private-Package> org.apache.felix.ipojo.manipulation, |
Clement Escoffier | b6a333d | 2008-10-14 10:51:53 +0000 | [diff] [blame] | 83 | org.apache.felix.ipojo.composite.architecture, |
| 84 | org.apache.felix.ipojo.composite.service*, |
| 85 | org.apache.felix.ipojo.composite.instance, |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 86 | org.apache.felix.ipojo.composite.util, !org.objectweb.asm.xml*, |
| 87 | org.objectweb.asm*;-split-package:=merge-first </Private-Package> |
| 88 | <Export-Package> org.apache.felix.ipojo.composite; version="0.9.0" |
Clement Escoffier | b6a333d | 2008-10-14 10:51:53 +0000 | [diff] [blame] | 89 | </Export-Package> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 90 | <Include-Resource> META-INF/LICENSE=LICENSE, |
| 91 | META-INF/NOTICE=NOTICE, META-INF/LICENSE.asm=LICENSE.asm |
Clement Escoffier | b6a333d | 2008-10-14 10:51:53 +0000 | [diff] [blame] | 92 | </Include-Resource> |
| 93 | <IPOJO-Extension> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 94 | composite:org.apache.felix.ipojo.composite.CompositeFactory |
Clement Escoffier | b6a333d | 2008-10-14 10:51:53 +0000 | [diff] [blame] | 95 | </IPOJO-Extension> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 96 | <_donotcopy> (CVS|.svn|.+.bak|~.+|metadata.xml) </_donotcopy> |
Clement Escoffier | b6a333d | 2008-10-14 10:51:53 +0000 | [diff] [blame] | 97 | </instructions> |
| 98 | </configuration> |
| 99 | </plugin> |
| 100 | <plugin> |
| 101 | <groupId>org.apache.felix</groupId> |
| 102 | <artifactId>maven-ipojo-plugin</artifactId> |
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 103 | <version>1.1.0-SNAPSHOT</version> |
Clement Escoffier | b6a333d | 2008-10-14 10:51:53 +0000 | [diff] [blame] | 104 | <executions> |
| 105 | <execution> |
| 106 | <goals> |
| 107 | <goal>ipojo-bundle</goal> |
| 108 | </goals> |
| 109 | <configuration> |
| 110 | <metadata>metadata.xml</metadata> |
| 111 | <ignoreAnnotations>true</ignoreAnnotations> |
| 112 | </configuration> |
| 113 | </execution> |
| 114 | </executions> |
| 115 | </plugin> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 116 | <plugin> |
| 117 | <groupId>org.codehaus.mojo</groupId> |
| 118 | <artifactId>rat-maven-plugin</artifactId> |
| 119 | <configuration> |
| 120 | <excludeSubProjects>false</excludeSubProjects> |
| 121 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 122 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 123 | <excludes> |
| 124 | <param>doc/**/*</param> |
| 125 | <param>maven-eclipse.xml</param> |
| 126 | <param>.checkstyle</param> |
| 127 | <param>.externalToolBuilders/*</param> |
| 128 | <param>LICENSE.asm</param> |
| 129 | </excludes> |
| 130 | </configuration> |
| 131 | </plugin> |
| 132 | <plugin> |
| 133 | <groupId>org.apache.maven.plugins</groupId> |
| 134 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 135 | <configuration> |
| 136 | <enableRulesSummary>false</enableRulesSummary> |
| 137 | <violationSeverity>warning</violationSeverity> |
| 138 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 139 | </configuration> |
| 140 | </plugin> |
Clement Escoffier | b6a333d | 2008-10-14 10:51:53 +0000 | [diff] [blame] | 141 | </plugins> |
| 142 | </build> |
Clement Escoffier | b6a333d | 2008-10-14 10:51:53 +0000 | [diff] [blame] | 143 | </project> |