Adam Wojtuniak | 5ea07b1 | 2009-12-14 00:31:27 +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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 21 | <parent> |
| 22 | <groupId>org.apache.felix</groupId> |
| 23 | <artifactId>felix-parent</artifactId> |
| 24 | <version>1.2.0</version> |
| 25 | <relativePath>../../pom/pom.xml</relativePath> |
| 26 | </parent> |
| 27 | |
| 28 | <modelVersion>4.0.0</modelVersion> |
| 29 | <packaging>bundle</packaging> |
| 30 | <name>Apache Felix IO Connector Service</name> |
| 31 | <version>0.9.0-SNAPSHOT</version> |
| 32 | <artifactId>org.apache.felix.io</artifactId> |
| 33 | <dependencies> |
| 34 | <dependency> |
| 35 | <groupId>org.osgi</groupId> |
| 36 | <artifactId>org.osgi.core</artifactId> |
| 37 | <version>4.0.0</version> |
| 38 | <scope>provided</scope> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.osgi</groupId> |
| 42 | <artifactId>org.osgi.compendium</artifactId> |
| 43 | <version>4.0.0</version> |
| 44 | <scope>provided</scope> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>${pom.groupId}</groupId> |
| 48 | <artifactId>org.osgi.foundation</artifactId> |
| 49 | <version>1.0.0</version> |
| 50 | <scope>provided</scope> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.mockito</groupId> |
| 54 | <artifactId>mockito-all</artifactId> |
| 55 | <version>1.8.1</version> |
| 56 | <scope>test</scope> |
| 57 | </dependency> |
| 58 | </dependencies> |
| 59 | <build> |
| 60 | <plugins> |
| 61 | <plugin> |
| 62 | <groupId>org.apache.felix</groupId> |
| 63 | <artifactId>maven-bundle-plugin</artifactId> |
| 64 | <extensions>true</extensions> |
| 65 | <configuration> |
| 66 | <instructions> |
| 67 | <Bundle-Name>Apache Felix IO Connector Service</Bundle-Name> |
| 68 | <Bundle-Description> |
| 69 | An implementation of the OSGi IO Connector Service |
| 70 | </Bundle-Description> |
| 71 | <Bundle-Activator> |
| 72 | ${pom.artifactId}.Activator </Bundle-Activator> |
| 73 | <Bundle-SymbolicName> |
| 74 | ${pom.artifactId} |
| 75 | </Bundle-SymbolicName> |
| 76 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
| 77 | <Export-Package> |
| 78 | </Export-Package> |
| 79 | <Private-Package> |
| 80 | org.apache.felix.io |
| 81 | </Private-Package> |
| 82 | <Export-Service> |
| 83 | org.osgi.service.io.ConnectorService |
| 84 | </Export-Service> |
| 85 | <Include-Resource> |
| 86 | </Include-Resource> |
| 87 | </instructions> |
| 88 | </configuration> |
| 89 | </plugin> |
| 90 | <plugin> |
| 91 | <groupId>org.codehaus.mojo</groupId> |
| 92 | <artifactId>rat-maven-plugin</artifactId> |
| 93 | <configuration> |
| 94 | <excludeSubProjects>false</excludeSubProjects> |
| 95 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 96 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 97 | <excludes> |
| 98 | <param>doc/*</param> |
| 99 | <param>maven-eclipse.xml</param> |
| 100 | <param>.checkstyle</param> |
| 101 | <param>.externalToolBuilders/*</param> |
| 102 | </excludes> |
| 103 | </configuration> |
| 104 | </plugin> |
| 105 | </plugins> |
| 106 | </build> |
| 107 | </project> |