blob: 5e24819718a5b006fc9e08810029fc42197d09a5 [file] [log] [blame]
Clement Escoffierde0a6832009-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 Escoffier11cb31b2009-03-29 16:26:08 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
23 <version>1.0.2</version>
24 <relativePath>../../pom/pom.xml</relativePath>
25 </parent>
Clement Escoffierde0a6832009-02-09 10:50:58 +000026 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
Clement Escoffier63b3e802009-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 Escoffierde0a6832009-02-09 10:50:58 +000031 <build>
32 <plugins>
33 <plugin>
34 <groupId>org.apache.felix</groupId>
35 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier63b3e802009-02-09 10:59:30 +000036 <version>1.4.3</version>
Clement Escoffierde0a6832009-02-09 10:50:58 +000037 <extensions>true</extensions>
38 <configuration>
39 <instructions>
40 <Bundle-SymbolicName>${pom.artifactId}
41 </Bundle-SymbolicName>
42 <Import-Package>!org.objectweb.asm.tree, *</Import-Package>
43 <Export-Package>org.apache.felix.ipojo.api
44 </Export-Package>
45 <Private-Package>org.apache.felix.ipojo.manipulation,
46 org.apache.felix.ipojo.manipulation.annotations,
47 org.objectweb.asm.commons, org.objectweb.asm</Private-Package>
48 <Include-Resource> META-INF/LICENCE=LICENSE,
Clement Escoffier74087302009-04-09 09:22:31 +000049 META-INF/NOTICE=NOTICE, META-INF/LICENSE.asm=LICENSE.asm
Clement Escoffierde0a6832009-02-09 10:50:58 +000050 </Include-Resource>
51 </instructions>
52 </configuration>
53 </plugin>
54 <plugin>
55 <groupId>org.codehaus.mojo</groupId>
56 <artifactId>rat-maven-plugin</artifactId>
57 <configuration>
58 <excludeSubProjects>false</excludeSubProjects>
59 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
60 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
61 <excludes>
62 <param>doc/**/*</param>
63 <param>maven-eclipse.xml</param>
64 <param>.checkstyle</param>
65 <param>.externalToolBuilders/*</param>
66 <param>LICENSE.asm</param>
67 <param>.fbprefs</param>
68 </excludes>
69 </configuration>
70 </plugin>
71 <plugin>
72 <groupId>org.apache.maven.plugins</groupId>
73 <artifactId>maven-checkstyle-plugin</artifactId>
74 <configuration>
75 <enableRulesSummary>false</enableRulesSummary>
76 <violationSeverity>warning</violationSeverity>
77 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
78 </configuration>
79 </plugin>
80 </plugins>
81 </build>
82 <dependencies>
83 <dependency>
84 <groupId>org.apache.felix</groupId>
85 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier63b3e802009-02-09 10:59:30 +000086 <version>1.3.0-SNAPSHOT</version>
Clement Escoffierde0a6832009-02-09 10:50:58 +000087 </dependency>
88 <dependency>
89 <groupId>org.apache.felix</groupId>
Clement Escoffier63b3e802009-02-09 10:59:30 +000090 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
91 <version>1.3.0-SNAPSHOT</version>
Clement Escoffierde0a6832009-02-09 10:50:58 +000092 </dependency>
93 <dependency>
94 <groupId>asm</groupId>
95 <artifactId>asm-all</artifactId>
96 <version>3.0</version>
97 <exclusions>
98 <exclusion>
99 <groupId>asm</groupId>
100 <artifactId>asm-tree</artifactId>
101 </exclusion>
102 </exclusions>
103 </dependency>
104 </dependencies>
105</project>