blob: 277fd9a658a91187870a7e710d43bebad53d610a [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 Escoffiere97afad2011-02-23 10:55:38 +000061 org.objectweb.asm.commons;version=3.0,
Clement Escoffier769c9942009-12-26 11:15:42 +000062 org.objectweb.asm;version=3.0
Clement Escoffier9ccf4382009-07-21 18:45:19 +000063 </Export-Package>
Clement Escoffiere97afad2011-02-23 10:55:38 +000064 <Include-Resource>
Clement Escoffier1593ef52010-07-14 18:31:13 +000065 META-INF/LICENSE=LICENSE,
Clement Escoffiere97afad2011-02-23 10:55:38 +000066 META-INF/NOTICE=NOTICE,
Clement Escoffier1593ef52010-07-14 18:31:13 +000067 META-INF/LICENSE.asm=LICENSE.asm,
68 META-INF/DEPENDENCIES=DEPENDENCIES
Clement Escoffier9ccf4382009-07-21 18:45:19 +000069 </Include-Resource>
70
71 </instructions>
72 </configuration>
73 </plugin>
74 <plugin>
75 <groupId>org.codehaus.mojo</groupId>
76 <artifactId>rat-maven-plugin</artifactId>
77 <configuration>
78 <excludeSubProjects>false</excludeSubProjects>
79 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
80 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
81 <excludes>
82 <param>doc/**/*</param>
83 <param>maven-eclipse.xml</param>
84 <param>.checkstyle</param>
85 <param>.externalToolBuilders/*</param>
86 <param>LICENSE.asm</param>
87 <param>.fbprefs</param>
88 </excludes>
89 </configuration>
90 </plugin>
91 <plugin>
92 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-checkstyle-plugin</artifactId>
94 <configuration>
95 <enableRulesSummary>false</enableRulesSummary>
96 <violationSeverity>warning</violationSeverity>
97 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
98 </configuration>
99 </plugin>
100
101 </plugins>
102 </build>
103 <dependencies>
104 <dependency>
105 <groupId>org.apache.felix</groupId>
106 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffiere97afad2011-02-23 10:55:38 +0000107 <version>1.8.0</version>
Clement Escoffier9ccf4382009-07-21 18:45:19 +0000108 </dependency>
109 <dependency>
110 <groupId>org.apache.felix</groupId>
111 <artifactId>org.apache.felix.ipojo.composite</artifactId>
Clement Escoffiere97afad2011-02-23 10:55:38 +0000112 <version>1.9.0-SNAPSHOT</version>
Clement Escoffier9ccf4382009-07-21 18:45:19 +0000113 </dependency>
114 <dependency>
115 <groupId>org.apache.felix</groupId>
116 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffiere97afad2011-02-23 10:55:38 +0000117 <version>1.8.0</version>
Clement Escoffier9ccf4382009-07-21 18:45:19 +0000118 </dependency>
119 <dependency>
120 <groupId>asm</groupId>
121 <artifactId>asm-all</artifactId>
122 <version>3.0</version>
123 <exclusions>
124 <exclusion>
125 <groupId>asm</groupId>
126 <artifactId>asm-tree</artifactId>
127 </exclusion>
128 </exclusions>
129 </dependency>
130 </dependencies>
Clement Escoffier9ccf4382009-07-21 18:45:19 +0000131</project>