Clement Escoffier | de0a683 | 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 | 11cb31b | 2009-03-29 16:26:08 +0000 | [diff] [blame] | 20 | <parent>
|
| 21 | <groupId>org.apache.felix</groupId>
|
| 22 | <artifactId>felix</artifactId>
|
| 23 | <version>1.0.2</version>
|
| 24 | <relativePath>../../pom/pom.xml</relativePath>
|
| 25 | </parent>
|
Clement Escoffier | de0a683 | 2009-02-09 10:50:58 +0000 | [diff] [blame] | 26 | <modelVersion>4.0.0</modelVersion>
|
| 27 | <packaging>bundle</packaging>
|
Clement Escoffier | 63b3e80 | 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 | de0a683 | 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 | 63b3e80 | 2009-02-09 10:59:30 +0000 | [diff] [blame] | 36 | <version>1.4.3</version>
|
Clement Escoffier | de0a683 | 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>
|
| 42 | <Import-Package>!org.objectweb.asm.tree, *</Import-Package>
|
| 43 | <Export-Package>org.apache.felix.ipojo.api
|
| 44 | </Export-Package>
|
| 45 | <Private-Package>org.apache.felix.ipojo.manipulation,
|
| 46 | org.apache.felix.ipojo.manipulation.annotations,
|
| 47 | org.objectweb.asm.commons, org.objectweb.asm</Private-Package>
|
| 48 | <Include-Resource> META-INF/LICENCE=LICENSE,
|
| 49 | META-INF/NOTICE=NOTICE, META-INF/LICENCE.asm=LICENSE.asm
|
| 50 | </Include-Resource>
|
| 51 | </instructions>
|
| 52 | </configuration>
|
| 53 | </plugin>
|
| 54 | <plugin>
|
| 55 | <groupId>org.codehaus.mojo</groupId>
|
| 56 | <artifactId>rat-maven-plugin</artifactId>
|
| 57 | <configuration>
|
| 58 | <excludeSubProjects>false</excludeSubProjects>
|
| 59 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
|
| 60 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
|
| 61 | <excludes>
|
| 62 | <param>doc/**/*</param>
|
| 63 | <param>maven-eclipse.xml</param>
|
| 64 | <param>.checkstyle</param>
|
| 65 | <param>.externalToolBuilders/*</param>
|
| 66 | <param>LICENSE.asm</param>
|
| 67 | <param>.fbprefs</param>
|
| 68 | </excludes>
|
| 69 | </configuration>
|
| 70 | </plugin>
|
| 71 | <plugin>
|
| 72 | <groupId>org.apache.maven.plugins</groupId>
|
| 73 | <artifactId>maven-checkstyle-plugin</artifactId>
|
| 74 | <configuration>
|
| 75 | <enableRulesSummary>false</enableRulesSummary>
|
| 76 | <violationSeverity>warning</violationSeverity>
|
| 77 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
|
| 78 | </configuration>
|
| 79 | </plugin>
|
| 80 | </plugins>
|
| 81 | </build>
|
| 82 | <dependencies>
|
| 83 | <dependency>
|
| 84 | <groupId>org.apache.felix</groupId>
|
| 85 | <artifactId>org.apache.felix.ipojo</artifactId>
|
Clement Escoffier | 63b3e80 | 2009-02-09 10:59:30 +0000 | [diff] [blame] | 86 | <version>1.3.0-SNAPSHOT</version>
|
Clement Escoffier | de0a683 | 2009-02-09 10:50:58 +0000 | [diff] [blame] | 87 | </dependency>
|
| 88 | <dependency>
|
| 89 | <groupId>org.apache.felix</groupId>
|
Clement Escoffier | 63b3e80 | 2009-02-09 10:59:30 +0000 | [diff] [blame] | 90 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
|
| 91 | <version>1.3.0-SNAPSHOT</version>
|
Clement Escoffier | de0a683 | 2009-02-09 10:50:58 +0000 | [diff] [blame] | 92 | </dependency>
|
| 93 | <dependency>
|
| 94 | <groupId>asm</groupId>
|
| 95 | <artifactId>asm-all</artifactId>
|
| 96 | <version>3.0</version>
|
| 97 | <exclusions>
|
| 98 | <exclusion>
|
| 99 | <groupId>asm</groupId>
|
| 100 | <artifactId>asm-tree</artifactId>
|
| 101 | </exclusion>
|
| 102 | </exclusions>
|
| 103 | </dependency>
|
| 104 | </dependencies>
|
| 105 | </project>
|