blob: daca07e287d8777ba34c4e6d9b8710a998b53c95 [file] [log] [blame]
Clement Escoffier9ccf4382009-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 Escoffier86215df2010-04-16 13:54:16 +000023 <version>1.2.1</version>
Clement Escoffier9ccf4382009-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 Escoffier41308ed2010-04-16 14:42:05 +000029 <version>1.7.0-SNAPSHOT</version>
Clement Escoffier9ccf4382009-07-21 18:45:19 +000030 <name>Apache Felix iPOJO API</name>
Clement Escoffiere97afad2011-02-23 10:55:38 +000031
Clement Escoffier9ccf4382009-07-21 18:45:19 +000032 <description>
Clement Escoffier4ca5f3d2010-04-16 14:39:08 +000033 iPOJO API used to define component types and instances in Java.
Clement Escoffier9ccf4382009-07-21 18:45:19 +000034 </description>
35 <url>http://felix.apache.org/site/apache-felix-ipojo-api.html</url>
Clement Escoffiere97afad2011-02-23 10:55:38 +000036
Clement Escoffier9ccf4382009-07-21 18:45:19 +000037 <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>
Clement Escoffier134b0062010-05-01 10:46:02 +000046 <Bundle-SymbolicName>${project.artifactId}
Clement Escoffier9ccf4382009-07-21 18:45:19 +000047 </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 Escoffier73c4d512011-10-06 14:20:43 +000061 org.objectweb.asm.commons;version=3.3.1,
62 org.objectweb.asm;version=3.3.1,
63 org.objectweb.asm.signature;version=3.3.1
Clement Escoffier9ccf4382009-07-21 18:45:19 +000064 </Export-Package>
Clement Escoffiere97afad2011-02-23 10:55:38 +000065 <Include-Resource>
Clement Escoffier1593ef52010-07-14 18:31:13 +000066 META-INF/LICENSE=LICENSE,
Clement Escoffiere97afad2011-02-23 10:55:38 +000067 META-INF/NOTICE=NOTICE,
Clement Escoffier1593ef52010-07-14 18:31:13 +000068 META-INF/LICENSE.asm=LICENSE.asm,
69 META-INF/DEPENDENCIES=DEPENDENCIES
Clement Escoffier9ccf4382009-07-21 18:45:19 +000070 </Include-Resource>
71
72 </instructions>
73 </configuration>
74 </plugin>
75 <plugin>
76 <groupId>org.codehaus.mojo</groupId>
77 <artifactId>rat-maven-plugin</artifactId>
78 <configuration>
79 <excludeSubProjects>false</excludeSubProjects>
80 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
81 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
82 <excludes>
83 <param>doc/**/*</param>
84 <param>maven-eclipse.xml</param>
85 <param>.checkstyle</param>
86 <param>.externalToolBuilders/*</param>
87 <param>LICENSE.asm</param>
88 <param>.fbprefs</param>
89 </excludes>
90 </configuration>
91 </plugin>
92 <plugin>
93 <groupId>org.apache.maven.plugins</groupId>
94 <artifactId>maven-checkstyle-plugin</artifactId>
95 <configuration>
96 <enableRulesSummary>false</enableRulesSummary>
97 <violationSeverity>warning</violationSeverity>
98 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
99 </configuration>
100 </plugin>
101
102 </plugins>
103 </build>
104 <dependencies>
105 <dependency>
106 <groupId>org.apache.felix</groupId>
107 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffiere97afad2011-02-23 10:55:38 +0000108 <version>1.8.0</version>
Clement Escoffier9ccf4382009-07-21 18:45:19 +0000109 </dependency>
110 <dependency>
111 <groupId>org.apache.felix</groupId>
112 <artifactId>org.apache.felix.ipojo.composite</artifactId>
Clement Escoffiere97afad2011-02-23 10:55:38 +0000113 <version>1.9.0-SNAPSHOT</version>
Clement Escoffier9ccf4382009-07-21 18:45:19 +0000114 </dependency>
115 <dependency>
116 <groupId>org.apache.felix</groupId>
117 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffiere97afad2011-02-23 10:55:38 +0000118 <version>1.8.0</version>
Clement Escoffier9ccf4382009-07-21 18:45:19 +0000119 </dependency>
120 <dependency>
121 <groupId>asm</groupId>
122 <artifactId>asm-all</artifactId>
Clement Escoffierfe4253c2011-10-05 14:56:59 +0000123 <version>3.3.1</version>
Clement Escoffier9ccf4382009-07-21 18:45:19 +0000124 <exclusions>
125 <exclusion>
126 <groupId>asm</groupId>
127 <artifactId>asm-tree</artifactId>
128 </exclusion>
129 </exclusions>
130 </dependency>
131 </dependencies>
Clement Escoffier9ccf4382009-07-21 18:45:19 +0000132</project>