Clement Escoffier | 5f59330 | 2008-10-14 11:13:50 +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 |
Clement Escoffier | f4dd2f2 | 2009-06-21 12:25:22 +0000 | [diff] [blame] | 9 | |
Clement Escoffier | 5f59330 | 2008-10-14 11:13:50 +0000 | [diff] [blame] | 10 | http://www.apache.org/licenses/LICENSE-2.0 |
Clement Escoffier | f4dd2f2 | 2009-06-21 12:25:22 +0000 | [diff] [blame] | 11 | |
Clement Escoffier | 5f59330 | 2008-10-14 11:13:50 +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. |
| 18 | --> |
Clement Escoffier | 0585e0d | 2009-01-19 14:25:57 +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/xsd/maven-4.0.0.xsd"> |
Clement Escoffier | a32364e | 2008-10-14 11:09:08 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | e259159 | 2009-04-30 14:00:40 +0000 | [diff] [blame] | 22 | <artifactId>felix-parent</artifactId> |
| 23 | <version>1.2.0</version> |
Clement Escoffier | a32364e | 2008-10-14 11:09:08 +0000 | [diff] [blame] | 24 | <relativePath>../../pom/pom.xml</relativePath> |
| 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <artifactId>org.apache.felix.ipojo.annotations</artifactId> |
| 28 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | e84a692 | 2009-01-19 14:26:23 +0000 | [diff] [blame] | 29 | <version>1.3.0-SNAPSHOT</version> |
Clement Escoffier | a32364e | 2008-10-14 11:09:08 +0000 | [diff] [blame] | 30 | <packaging>bundle</packaging> |
| 31 | <name>Apache Felix iPOJO Annotations</name> |
| 32 | <build> |
| 33 | <plugins> |
| 34 | <plugin> |
| 35 | <groupId>org.apache.maven.plugins</groupId> |
| 36 | <artifactId>maven-compiler-plugin</artifactId> |
| 37 | <configuration> |
| 38 | <source>1.5</source> |
| 39 | <target>1.5</target> |
| 40 | </configuration> |
| 41 | </plugin> |
| 42 | <plugin> |
| 43 | <groupId>org.apache.felix</groupId> |
| 44 | <artifactId>maven-bundle-plugin</artifactId> |
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 45 | <version>1.4.3</version> |
Clement Escoffier | a32364e | 2008-10-14 11:09:08 +0000 | [diff] [blame] | 46 | <extensions>true</extensions> |
| 47 | <configuration> |
| 48 | <instructions> |
| 49 | <Bundle-Name>iPOJO Annotations</Bundle-Name> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 50 | <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor> |
| 51 | <Bundle-Description> iPOJO Annotations </Bundle-Description> |
| 52 | <Export-Package> org.apache.felix.ipojo.annotations, |
| 53 | org.apache.felix.ipojo.handler.temporal, |
Clement Escoffier | 0b07ca4 | 2008-11-25 14:47:49 +0000 | [diff] [blame] | 54 | org.apache.felix.ipojo.handlers.jmx, |
| 55 | org.apache.felix.ipojo.extender, |
| 56 | org.apache.felix.ipojo.whiteboard, |
Clement Escoffier | f4dd2f2 | 2009-06-21 12:25:22 +0000 | [diff] [blame] | 57 | org.apache.felix.ipojo.handlers.event, |
| 58 | org.apache.felix.ipojo.transaction |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 59 | </Export-Package> |
| 60 | <Include-Resource> META-INF/LICENCE=LICENSE, |
| 61 | META-INF/NOTICE=NOTICE </Include-Resource> |
Clement Escoffier | a32364e | 2008-10-14 11:09:08 +0000 | [diff] [blame] | 62 | </instructions> |
Clement Escoffier | f4dd2f2 | 2009-06-21 12:25:22 +0000 | [diff] [blame] | 63 | <obrRepository>NONE</obrRepository> |
Clement Escoffier | a32364e | 2008-10-14 11:09:08 +0000 | [diff] [blame] | 64 | </configuration> |
| 65 | </plugin> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 66 | <plugin> |
| 67 | <groupId>org.codehaus.mojo</groupId> |
| 68 | <artifactId>rat-maven-plugin</artifactId> |
| 69 | <configuration> |
| 70 | <excludeSubProjects>false</excludeSubProjects> |
| 71 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 72 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 73 | <excludes> |
| 74 | <param>doc/**/*</param> |
| 75 | <param>maven-eclipse.xml</param> |
| 76 | <param>.checkstyle</param> |
| 77 | <param>.externalToolBuilders/*</param> |
| 78 | <param>LICENSE.asm</param> |
| 79 | </excludes> |
| 80 | </configuration> |
| 81 | </plugin> |
| 82 | <plugin> |
| 83 | <groupId>org.apache.maven.plugins</groupId> |
| 84 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 85 | <configuration> |
| 86 | <skip>true</skip> |
| 87 | </configuration> |
| 88 | </plugin> |
Clement Escoffier | a32364e | 2008-10-14 11:09:08 +0000 | [diff] [blame] | 89 | </plugins> |
| 90 | </build> |
Clement Escoffier | f5fc556 | 2007-08-14 13:44:32 +0000 | [diff] [blame] | 91 | </project> |