blob: 01fb29f75a76bcc0cd45aa45396deb49954bc3d3 [file] [log] [blame]
Clement Escoffierc92035d2009-07-21 18:45:19 +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 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 Escoffier5ab0b442010-04-16 13:54:16 +000023 <version>1.2.1</version>
Clement Escoffierc92035d2009-07-21 18:45:19 +000024 <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 Escoffier547bb3b2010-04-16 14:40:53 +000029 <version>1.6.0</version>
Clement Escoffierc92035d2009-07-21 18:45:19 +000030 <name>Apache Felix iPOJO API</name>
31
32 <description>
Clement Escoffierd056ee32010-04-16 14:39:08 +000033 iPOJO API used to define component types and instances in Java.
Clement Escoffierc92035d2009-07-21 18:45:19 +000034 </description>
35 <url>http://felix.apache.org/site/apache-felix-ipojo-api.html</url>
36
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>
46 <Bundle-SymbolicName>${pom.artifactId}
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 Escoffier6e5fb602009-12-26 11:15:42 +000061 org.objectweb.asm.commons;version=3.0,
62 org.objectweb.asm;version=3.0
Clement Escoffierc92035d2009-07-21 18:45:19 +000063 </Export-Package>
64 <Include-Resource> META-INF/LICENSE=LICENSE,
65 META-INF/NOTICE=NOTICE, META-INF/LICENSE.asm=LICENSE.asm
66 </Include-Resource>
67
68 </instructions>
69 </configuration>
70 </plugin>
71 <plugin>
72 <groupId>org.codehaus.mojo</groupId>
73 <artifactId>rat-maven-plugin</artifactId>
74 <configuration>
75 <excludeSubProjects>false</excludeSubProjects>
76 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
77 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
78 <excludes>
79 <param>doc/**/*</param>
80 <param>maven-eclipse.xml</param>
81 <param>.checkstyle</param>
82 <param>.externalToolBuilders/*</param>
83 <param>LICENSE.asm</param>
84 <param>.fbprefs</param>
85 </excludes>
86 </configuration>
87 </plugin>
88 <plugin>
89 <groupId>org.apache.maven.plugins</groupId>
90 <artifactId>maven-checkstyle-plugin</artifactId>
91 <configuration>
92 <enableRulesSummary>false</enableRulesSummary>
93 <violationSeverity>warning</violationSeverity>
94 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
95 </configuration>
96 </plugin>
97
98 </plugins>
99 </build>
100 <dependencies>
101 <dependency>
102 <groupId>org.apache.felix</groupId>
103 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffierd056ee32010-04-16 14:39:08 +0000104 <version>1.6.0</version>
Clement Escoffierc92035d2009-07-21 18:45:19 +0000105 </dependency>
106 <dependency>
107 <groupId>org.apache.felix</groupId>
108 <artifactId>org.apache.felix.ipojo.composite</artifactId>
Clement Escoffierd056ee32010-04-16 14:39:08 +0000109 <version>1.6.0</version>
Clement Escoffierc92035d2009-07-21 18:45:19 +0000110 </dependency>
111 <dependency>
112 <groupId>org.apache.felix</groupId>
113 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffierd056ee32010-04-16 14:39:08 +0000114 <version>1.6.0</version>
Clement Escoffierc92035d2009-07-21 18:45:19 +0000115 </dependency>
116 <dependency>
117 <groupId>asm</groupId>
118 <artifactId>asm-all</artifactId>
119 <version>3.0</version>
120 <exclusions>
121 <exclusion>
122 <groupId>asm</groupId>
123 <artifactId>asm-tree</artifactId>
124 </exclusion>
125 </exclusions>
126 </dependency>
127 </dependencies>
Clement Escoffier547bb3b2010-04-16 14:40:53 +0000128
129 <scm>
130 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.api-1.6.0</connection>
131 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.api-1.6.0</developerConnection>
132 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.api-1.6.0</url>
133 </scm>
Clement Escoffierc92035d2009-07-21 18:45:19 +0000134</project>