Clement Escoffier | eb41a15 | 2008-05-18 22:42:39 +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 | --> |
Clement Escoffier | d93da47 | 2009-01-19 10:33:13 +0000 | [diff] [blame] | 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"> |
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 20 | <parent> |
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 21 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 7d116ff | 2008-03-29 15:04:02 +0000 | [diff] [blame] | 22 | <artifactId>felix</artifactId> |
Clement Escoffier | 4ae8697 | 2009-04-09 12:09:09 +0000 | [diff] [blame] | 23 | <version>1.0.4</version> |
Clement Escoffier | 7d116ff | 2008-03-29 15:04:02 +0000 | [diff] [blame] | 24 | <relativePath>../../pom/pom.xml</relativePath> |
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <artifactId>org.apache.felix.ipojo.metadata</artifactId> |
Clement Escoffier | 7d116ff | 2008-03-29 15:04:02 +0000 | [diff] [blame] | 28 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | c1b8807 | 2009-01-19 10:34:24 +0000 | [diff] [blame] | 29 | <version>1.3.0-SNAPSHOT</version> |
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 30 | <packaging>bundle</packaging> |
| 31 | <name>Apache Felix iPOJO Metadata</name> |
| 32 | <build> |
| 33 | <plugins> |
| 34 | <plugin> |
| 35 | <groupId>org.apache.felix</groupId> |
| 36 | <artifactId>maven-bundle-plugin</artifactId> |
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 37 | <version>1.4.3</version> |
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 38 | <extensions>true</extensions> |
| 39 | <configuration> |
| 40 | <instructions> |
| 41 | <Bundle-Name>iPOJO Metadata</Bundle-Name> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 42 | <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor> |
| 43 | <Bundle-Description> iPOJO Metadata </Bundle-Description> |
| 44 | <Export-Package> org.apache.felix.ipojo.metadata </Export-Package> |
| 45 | <Include-Resource> META-INF/LICENCE=LICENSE, |
| 46 | META-INF/NOTICE=NOTICE </Include-Resource> |
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 47 | </instructions> |
Clement Escoffier | 25137e3 | 2009-01-14 14:07:17 +0000 | [diff] [blame] | 48 | <obrRepository>NONE</obrRepository> |
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 49 | </configuration> |
| 50 | </plugin> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 51 | <plugin> |
| 52 | <groupId>org.codehaus.mojo</groupId> |
| 53 | <artifactId>rat-maven-plugin</artifactId> |
| 54 | <configuration> |
| 55 | <excludeSubProjects>false</excludeSubProjects> |
| 56 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 57 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 58 | <excludes> |
| 59 | <param>doc/*</param> |
| 60 | <param>maven-eclipse.xml</param> |
| 61 | <param>.checkstyle</param> |
| 62 | <param>.externalToolBuilders/*</param> |
| 63 | </excludes> |
| 64 | </configuration> |
| 65 | </plugin> |
| 66 | <plugin> |
| 67 | <groupId>org.apache.maven.plugins</groupId> |
| 68 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 69 | <configuration> |
| 70 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 71 | </configuration> |
| 72 | </plugin> |
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 73 | </plugins> |
| 74 | </build> |
Clement Escoffier | ac119fe | 2008-05-16 22:57:48 +0000 | [diff] [blame] | 75 | </project> |