Clement Escoffier | 00a8964 | 2009-02-09 10:50:58 +0000 | [diff] [blame] | 1 | <!--
|
| 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 Escoffier | c56d126 | 2009-03-29 16:26:08 +0000 | [diff] [blame] | 20 | <parent>
|
| 21 | <groupId>org.apache.felix</groupId>
|
| 22 | <artifactId>felix</artifactId>
|
Clement Escoffier | a3a6204 | 2009-04-09 12:09:09 +0000 | [diff] [blame] | 23 | <version>1.0.4</version>
|
Clement Escoffier | c56d126 | 2009-03-29 16:26:08 +0000 | [diff] [blame] | 24 | <relativePath>../../pom/pom.xml</relativePath>
|
| 25 | </parent>
|
Clement Escoffier | 00a8964 | 2009-02-09 10:50:58 +0000 | [diff] [blame] | 26 | <modelVersion>4.0.0</modelVersion>
|
| 27 | <packaging>bundle</packaging>
|
Clement Escoffier | 5c6a6a3 | 2009-02-09 10:59:30 +0000 | [diff] [blame] | 28 | <artifactId>org.apache.felix.ipojo.api</artifactId>
|
| 29 | <version>1.3.0-SNAPSHOT</version>
|
| 30 | <name>Apache Felix iPOJO API</name>
|
Clement Escoffier | 00a8964 | 2009-02-09 10:50:58 +0000 | [diff] [blame] | 31 | <build>
|
| 32 | <plugins>
|
| 33 | <plugin>
|
| 34 | <groupId>org.apache.felix</groupId>
|
| 35 | <artifactId>maven-bundle-plugin</artifactId>
|
Clement Escoffier | 5c6a6a3 | 2009-02-09 10:59:30 +0000 | [diff] [blame] | 36 | <version>1.4.3</version>
|
Clement Escoffier | 00a8964 | 2009-02-09 10:50:58 +0000 | [diff] [blame] | 37 | <extensions>true</extensions>
|
| 38 | <configuration>
|
| 39 | <instructions>
|
| 40 | <Bundle-SymbolicName>${pom.artifactId}
|
| 41 | </Bundle-SymbolicName>
|
Clement Escoffier | 6b61ef6 | 2009-04-14 13:42:55 +0000 | [diff] [blame] | 42 | <Import-Package>
|
| 43 | !org.objectweb.asm.tree,
|
| 44 | org.apache.felix.ipojo.composite;resolution:=optional,
|
| 45 | *
|
| 46 | </Import-Package>
|
| 47 | <Export-Package>
|
| 48 | org.apache.felix.ipojo.api,
|
| 49 | org.apache.felix.ipojo.api.composite,
|
| 50 | org.apache.felix.ipojo.manipulation,
|
Clement Escoffier | 00a8964 | 2009-02-09 10:50:58 +0000 | [diff] [blame] | 51 | org.apache.felix.ipojo.manipulation.annotations,
|
Clement Escoffier | 6b61ef6 | 2009-04-14 13:42:55 +0000 | [diff] [blame] | 52 | org.objectweb.asm.commons, org.objectweb.asm
|
| 53 | </Export-Package>
|
Clement Escoffier | 00a8964 | 2009-02-09 10:50:58 +0000 | [diff] [blame] | 54 | <Include-Resource> META-INF/LICENCE=LICENSE,
|
Clement Escoffier | 1261c91 | 2009-04-09 09:22:31 +0000 | [diff] [blame] | 55 | META-INF/NOTICE=NOTICE, META-INF/LICENSE.asm=LICENSE.asm
|
Clement Escoffier | 00a8964 | 2009-02-09 10:50:58 +0000 | [diff] [blame] | 56 | </Include-Resource>
|
Clement Escoffier | 6b61ef6 | 2009-04-14 13:42:55 +0000 | [diff] [blame] | 57 |
|
Clement Escoffier | 00a8964 | 2009-02-09 10:50:58 +0000 | [diff] [blame] | 58 | </instructions>
|
| 59 | </configuration>
|
| 60 | </plugin>
|
| 61 | <plugin>
|
| 62 | <groupId>org.codehaus.mojo</groupId>
|
| 63 | <artifactId>rat-maven-plugin</artifactId>
|
| 64 | <configuration>
|
| 65 | <excludeSubProjects>false</excludeSubProjects>
|
| 66 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
|
| 67 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
|
| 68 | <excludes>
|
| 69 | <param>doc/**/*</param>
|
| 70 | <param>maven-eclipse.xml</param>
|
| 71 | <param>.checkstyle</param>
|
| 72 | <param>.externalToolBuilders/*</param>
|
| 73 | <param>LICENSE.asm</param>
|
| 74 | <param>.fbprefs</param>
|
| 75 | </excludes>
|
| 76 | </configuration>
|
| 77 | </plugin>
|
| 78 | <plugin>
|
| 79 | <groupId>org.apache.maven.plugins</groupId>
|
| 80 | <artifactId>maven-checkstyle-plugin</artifactId>
|
| 81 | <configuration>
|
| 82 | <enableRulesSummary>false</enableRulesSummary>
|
| 83 | <violationSeverity>warning</violationSeverity>
|
| 84 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
|
| 85 | </configuration>
|
| 86 | </plugin>
|
Clement Escoffier | 9eed185 | 2009-04-15 13:21:29 +0000 | [diff] [blame] | 87 |
|
Clement Escoffier | 00a8964 | 2009-02-09 10:50:58 +0000 | [diff] [blame] | 88 | </plugins>
|
| 89 | </build>
|
| 90 | <dependencies>
|
| 91 | <dependency>
|
| 92 | <groupId>org.apache.felix</groupId>
|
| 93 | <artifactId>org.apache.felix.ipojo</artifactId>
|
Clement Escoffier | 5c6a6a3 | 2009-02-09 10:59:30 +0000 | [diff] [blame] | 94 | <version>1.3.0-SNAPSHOT</version>
|
Clement Escoffier | 00a8964 | 2009-02-09 10:50:58 +0000 | [diff] [blame] | 95 | </dependency>
|
| 96 | <dependency>
|
| 97 | <groupId>org.apache.felix</groupId>
|
Clement Escoffier | 6b61ef6 | 2009-04-14 13:42:55 +0000 | [diff] [blame] | 98 | <artifactId>org.apache.felix.ipojo.composite</artifactId>
|
| 99 | <version>1.3.0-SNAPSHOT</version>
|
| 100 | </dependency>
|
| 101 | <dependency>
|
| 102 | <groupId>org.apache.felix</groupId>
|
Clement Escoffier | 5c6a6a3 | 2009-02-09 10:59:30 +0000 | [diff] [blame] | 103 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
|
| 104 | <version>1.3.0-SNAPSHOT</version>
|
Clement Escoffier | 00a8964 | 2009-02-09 10:50:58 +0000 | [diff] [blame] | 105 | </dependency>
|
| 106 | <dependency>
|
| 107 | <groupId>asm</groupId>
|
| 108 | <artifactId>asm-all</artifactId>
|
| 109 | <version>3.0</version>
|
| 110 | <exclusions>
|
| 111 | <exclusion>
|
| 112 | <groupId>asm</groupId>
|
| 113 | <artifactId>asm-tree</artifactId>
|
| 114 | </exclusion>
|
| 115 | </exclusions>
|
| 116 | </dependency>
|
| 117 | </dependencies>
|
| 118 | </project>
|