blob: 1f12b767b0825c49d001d2f92308ac3a860440b3 [file] [log] [blame]
Clement Escoffier1e0d1102008-10-14 10:52:53 +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 Escoffierb8fe1372008-11-20 15:51:56 +000019<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 Escoffier2b45d242008-10-14 10:51:53 +000021 <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 Escoffier818e6922008-10-14 13:55:56 +000032 <version>1.1.0-SNAPSHOT</version>
Clement Escoffiera6be7932009-01-14 14:07:17 +000033
34 <properties>
35 <ipojo.package.version>1.1.0</ipojo.package.version>
36 </properties>
37
Clement Escoffier2b45d242008-10-14 10:51:53 +000038 <dependencies>
39 <dependency>
40 <groupId>org.apache.felix</groupId>
41 <artifactId>org.osgi.core</artifactId>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000042 <version>1.0.1</version>
Clement Escoffier2b45d242008-10-14 10:51:53 +000043 </dependency>
44 <dependency>
45 <groupId>org.apache.felix</groupId>
Clement Escoffier2b45d242008-10-14 10:51:53 +000046 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffier818e6922008-10-14 13:55:56 +000047 <version>1.1.0-SNAPSHOT</version>
Clement Escoffier2b45d242008-10-14 10:51:53 +000048 </dependency>
49 <dependency>
50 <groupId>org.apache.felix</groupId>
51 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier818e6922008-10-14 13:55:56 +000052 <version>1.1.0-SNAPSHOT</version>
Clement Escoffier2b45d242008-10-14 10:51:53 +000053 </dependency>
54 </dependencies>
55 <build>
56 <plugins>
57 <plugin>
58 <groupId>org.apache.felix</groupId>
59 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier818e6922008-10-14 13:55:56 +000060 <version>1.4.3</version>
Clement Escoffier2b45d242008-10-14 10:51:53 +000061 <extensions>true</extensions>
62 <configuration>
63 <instructions>
Clement Escoffier23e4adf2008-12-10 12:29:41 +000064 <Bundle-Name>Apache Felix iPOJO Composite</Bundle-Name>
65 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000066 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
67 <Bundle-Description> iPOJO Composititon Framework
Clement Escoffier2b45d242008-10-14 10:51:53 +000068 </Bundle-Description>
69 <Bundle-DocURL>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000070 http://felix.apache.org/site/apache-felix-ipojo.html
Clement Escoffier2b45d242008-10-14 10:51:53 +000071 </Bundle-DocURL>
Clement Escoffiera6be7932009-01-14 14:07:17 +000072 <Import-Package>
73 org.apache.felix.ipojo,
Clement Escoffier2b45d242008-10-14 10:51:53 +000074 org.apache.felix.ipojo.architecture,
Clement Escoffiera6be7932009-01-14 14:07:17 +000075 org.apache.felix.ipojo.context,
76 org.apache.felix.ipojo.metadata,
77 org.apache.felix.ipojo.parser,
78 org.apache.felix.ipojo.util,
Clement Escoffierb8fe1372008-11-20 15:51:56 +000079 org.osgi.framework;version=1.3 </Import-Package>
Clement Escoffiera6be7932009-01-14 14:07:17 +000080 <Private-Package>
81 org.apache.felix.ipojo.manipulation,
Clement Escoffier2b45d242008-10-14 10:51:53 +000082 org.apache.felix.ipojo.composite.architecture,
83 org.apache.felix.ipojo.composite.service*,
84 org.apache.felix.ipojo.composite.instance,
Clement Escoffiera6be7932009-01-14 14:07:17 +000085 org.apache.felix.ipojo.composite.util,
86 !org.objectweb.asm.xml*,
87 org.objectweb.asm*;-split-package:=merge-first
88 </Private-Package>
89 <Export-Package>
90 org.apache.felix.ipojo.composite; version="${ipojo.package.version}"
Clement Escoffier2b45d242008-10-14 10:51:53 +000091 </Export-Package>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000092 <Include-Resource> META-INF/LICENSE=LICENSE,
93 META-INF/NOTICE=NOTICE, META-INF/LICENSE.asm=LICENSE.asm
Clement Escoffier2b45d242008-10-14 10:51:53 +000094 </Include-Resource>
95 <IPOJO-Extension>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000096 composite:org.apache.felix.ipojo.composite.CompositeFactory
Clement Escoffier2b45d242008-10-14 10:51:53 +000097 </IPOJO-Extension>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000098 <_donotcopy> (CVS|.svn|.+.bak|~.+|metadata.xml) </_donotcopy>
Clement Escoffier2b45d242008-10-14 10:51:53 +000099 </instructions>
100 </configuration>
101 </plugin>
102 <plugin>
103 <groupId>org.apache.felix</groupId>
104 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier818e6922008-10-14 13:55:56 +0000105 <version>1.1.0-SNAPSHOT</version>
Clement Escoffier2b45d242008-10-14 10:51:53 +0000106 <executions>
107 <execution>
108 <goals>
109 <goal>ipojo-bundle</goal>
110 </goals>
111 <configuration>
112 <metadata>metadata.xml</metadata>
113 <ignoreAnnotations>true</ignoreAnnotations>
114 </configuration>
115 </execution>
116 </executions>
117 </plugin>
Clement Escoffierb8fe1372008-11-20 15:51:56 +0000118 <plugin>
119 <groupId>org.codehaus.mojo</groupId>
120 <artifactId>rat-maven-plugin</artifactId>
121 <configuration>
122 <excludeSubProjects>false</excludeSubProjects>
123 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
124 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
125 <excludes>
126 <param>doc/**/*</param>
127 <param>maven-eclipse.xml</param>
128 <param>.checkstyle</param>
129 <param>.externalToolBuilders/*</param>
130 <param>LICENSE.asm</param>
131 </excludes>
132 </configuration>
133 </plugin>
134 <plugin>
135 <groupId>org.apache.maven.plugins</groupId>
136 <artifactId>maven-checkstyle-plugin</artifactId>
137 <configuration>
138 <enableRulesSummary>false</enableRulesSummary>
139 <violationSeverity>warning</violationSeverity>
140 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
141 </configuration>
142 </plugin>
Clement Escoffier2b45d242008-10-14 10:51:53 +0000143 </plugins>
144 </build>
Clement Escoffier2b45d242008-10-14 10:51:53 +0000145</project>