Clement Escoffier | 00a8964 | 2009-02-09 10:50:58 +0000 | [diff] [blame] | 1 | <!--
|
Clement Escoffier | 0630c6b | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 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
|
Clement Escoffier | c80b73d | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 9 |
|
Clement Escoffier | 0630c6b | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 10 | http://www.apache.org/licenses/LICENSE-2.0
|
Clement Escoffier | c80b73d | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 11 |
|
Clement Escoffier | 0630c6b | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 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.
|
Clement Escoffier | 00a8964 | 2009-02-09 10:50:58 +0000 | [diff] [blame] | 18 | -->
|
| 19 | <project>
|
Clement Escoffier | 0630c6b | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 20 | <parent>
|
| 21 | <groupId>org.apache.felix</groupId>
|
| 22 | <artifactId>felix-parent</artifactId>
|
| 23 | <version>1.2.0</version>
|
| 24 | <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>
|
| 29 | <version>1.3.0-SNAPSHOT</version>
|
| 30 | <name>Apache Felix iPOJO API</name>
|
| 31 |
|
| 32 | <description>
|
| 33 | iPOJO API used to definie component types and instances from Java code.
|
| 34 | </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,
|
| 61 | org.objectweb.asm.commons, org.objectweb.asm
|
| 62 | </Export-Package>
|
| 63 | <Include-Resource> META-INF/LICENSE=LICENSE,
|
| 64 | META-INF/NOTICE=NOTICE, META-INF/LICENSE.asm=LICENSE.asm
|
| 65 | </Include-Resource>
|
Clement Escoffier | c80b73d | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 66 |
|
Clement Escoffier | 0630c6b | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 67 | </instructions>
|
| 68 | </configuration>
|
| 69 | </plugin>
|
| 70 | <plugin>
|
| 71 | <groupId>org.codehaus.mojo</groupId>
|
| 72 | <artifactId>rat-maven-plugin</artifactId>
|
| 73 | <configuration>
|
| 74 | <excludeSubProjects>false</excludeSubProjects>
|
| 75 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
|
| 76 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
|
| 77 | <excludes>
|
| 78 | <param>doc/**/*</param>
|
| 79 | <param>maven-eclipse.xml</param>
|
| 80 | <param>.checkstyle</param>
|
| 81 | <param>.externalToolBuilders/*</param>
|
| 82 | <param>LICENSE.asm</param>
|
| 83 | <param>.fbprefs</param>
|
| 84 | </excludes>
|
| 85 | </configuration>
|
| 86 | </plugin>
|
| 87 | <plugin>
|
| 88 | <groupId>org.apache.maven.plugins</groupId>
|
| 89 | <artifactId>maven-checkstyle-plugin</artifactId>
|
| 90 | <configuration>
|
| 91 | <enableRulesSummary>false</enableRulesSummary>
|
| 92 | <violationSeverity>warning</violationSeverity>
|
| 93 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
|
| 94 | </configuration>
|
| 95 | </plugin>
|
Clement Escoffier | c80b73d | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 96 |
|
Clement Escoffier | 0630c6b | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 97 | </plugins>
|
| 98 | </build>
|
| 99 | <dependencies>
|
| 100 | <dependency>
|
| 101 | <groupId>org.apache.felix</groupId>
|
| 102 | <artifactId>org.apache.felix.ipojo</artifactId>
|
Clement Escoffier | 1df262c | 2009-07-21 18:44:40 +0000 | [diff] [blame^] | 103 | <version>1.4.0</version>
|
Clement Escoffier | 0630c6b | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 104 | </dependency>
|
| 105 | <dependency>
|
| 106 | <groupId>org.apache.felix</groupId>
|
| 107 | <artifactId>org.apache.felix.ipojo.composite</artifactId>
|
Clement Escoffier | 1df262c | 2009-07-21 18:44:40 +0000 | [diff] [blame^] | 108 | <version>1.4.0</version>
|
Clement Escoffier | 0630c6b | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 109 | </dependency>
|
| 110 | <dependency>
|
| 111 | <groupId>org.apache.felix</groupId>
|
| 112 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
|
Clement Escoffier | 1df262c | 2009-07-21 18:44:40 +0000 | [diff] [blame^] | 113 | <version>1.4.0</version>
|
Clement Escoffier | 0630c6b | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 114 | </dependency>
|
| 115 | <dependency>
|
| 116 | <groupId>asm</groupId>
|
| 117 | <artifactId>asm-all</artifactId>
|
| 118 | <version>3.0</version>
|
| 119 | <exclusions>
|
| 120 | <exclusion>
|
| 121 | <groupId>asm</groupId>
|
| 122 | <artifactId>asm-tree</artifactId>
|
| 123 | </exclusion>
|
| 124 | </exclusions>
|
| 125 | </dependency>
|
| 126 | </dependencies>
|
Clement Escoffier | 00a8964 | 2009-02-09 10:50:58 +0000 | [diff] [blame] | 127 | </project>
|