blob: e4c4d3c39087e6ec4228e7b493042881bdeeba53 [file] [log] [blame]
Clement Escoffier00a89642009-02-09 10:50:58 +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-->
19<project>
Clement Escoffierc56d1262009-03-29 16:26:08 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
Clement Escoffiera3a62042009-04-09 12:09:09 +000023 <version>1.0.4</version>
Clement Escoffierc56d1262009-03-29 16:26:08 +000024 <relativePath>../../pom/pom.xml</relativePath>
25 </parent>
Clement Escoffier00a89642009-02-09 10:50:58 +000026 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
Clement Escoffier5c6a6a32009-02-09 10:59:30 +000028 <artifactId>org.apache.felix.ipojo.api</artifactId>
29 <version>1.3.0-SNAPSHOT</version>
30 <name>Apache Felix iPOJO API</name>
Clement Escoffier00a89642009-02-09 10:50:58 +000031 <build>
32 <plugins>
33 <plugin>
34 <groupId>org.apache.felix</groupId>
35 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier5c6a6a32009-02-09 10:59:30 +000036 <version>1.4.3</version>
Clement Escoffier00a89642009-02-09 10:50:58 +000037 <extensions>true</extensions>
38 <configuration>
39 <instructions>
40 <Bundle-SymbolicName>${pom.artifactId}
41 </Bundle-SymbolicName>
Clement Escoffier6b61ef62009-04-14 13:42:55 +000042 <Import-Package>
43 !org.objectweb.asm.tree,
44 org.apache.felix.ipojo.composite;resolution:=optional,
45 *
46 </Import-Package>
47 <Export-Package>
48 org.apache.felix.ipojo.api,
49 org.apache.felix.ipojo.api.composite,
50 org.apache.felix.ipojo.manipulation,
Clement Escoffier00a89642009-02-09 10:50:58 +000051 org.apache.felix.ipojo.manipulation.annotations,
Clement Escoffier6b61ef62009-04-14 13:42:55 +000052 org.objectweb.asm.commons, org.objectweb.asm
53 </Export-Package>
Clement Escoffier00a89642009-02-09 10:50:58 +000054 <Include-Resource> META-INF/LICENCE=LICENSE,
Clement Escoffier1261c912009-04-09 09:22:31 +000055 META-INF/NOTICE=NOTICE, META-INF/LICENSE.asm=LICENSE.asm
Clement Escoffier00a89642009-02-09 10:50:58 +000056 </Include-Resource>
Clement Escoffier6b61ef62009-04-14 13:42:55 +000057
Clement Escoffier00a89642009-02-09 10:50:58 +000058 </instructions>
59 </configuration>
60 </plugin>
61 <plugin>
62 <groupId>org.codehaus.mojo</groupId>
63 <artifactId>rat-maven-plugin</artifactId>
64 <configuration>
65 <excludeSubProjects>false</excludeSubProjects>
66 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
67 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
68 <excludes>
69 <param>doc/**/*</param>
70 <param>maven-eclipse.xml</param>
71 <param>.checkstyle</param>
72 <param>.externalToolBuilders/*</param>
73 <param>LICENSE.asm</param>
74 <param>.fbprefs</param>
75 </excludes>
76 </configuration>
77 </plugin>
78 <plugin>
79 <groupId>org.apache.maven.plugins</groupId>
80 <artifactId>maven-checkstyle-plugin</artifactId>
81 <configuration>
82 <enableRulesSummary>false</enableRulesSummary>
83 <violationSeverity>warning</violationSeverity>
84 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
85 </configuration>
86 </plugin>
Clement Escoffier9eed1852009-04-15 13:21:29 +000087
Clement Escoffier00a89642009-02-09 10:50:58 +000088 </plugins>
89 </build>
90 <dependencies>
91 <dependency>
92 <groupId>org.apache.felix</groupId>
93 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier5c6a6a32009-02-09 10:59:30 +000094 <version>1.3.0-SNAPSHOT</version>
Clement Escoffier00a89642009-02-09 10:50:58 +000095 </dependency>
96 <dependency>
97 <groupId>org.apache.felix</groupId>
Clement Escoffier6b61ef62009-04-14 13:42:55 +000098 <artifactId>org.apache.felix.ipojo.composite</artifactId>
99 <version>1.3.0-SNAPSHOT</version>
100 </dependency>
101 <dependency>
102 <groupId>org.apache.felix</groupId>
Clement Escoffier5c6a6a32009-02-09 10:59:30 +0000103 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
104 <version>1.3.0-SNAPSHOT</version>
Clement Escoffier00a89642009-02-09 10:50:58 +0000105 </dependency>
106 <dependency>
107 <groupId>asm</groupId>
108 <artifactId>asm-all</artifactId>
109 <version>3.0</version>
110 <exclusions>
111 <exclusion>
112 <groupId>asm</groupId>
113 <artifactId>asm-tree</artifactId>
114 </exclusion>
115 </exclusions>
116 </dependency>
117 </dependencies>
118</project>