Richard S. Hall | dc82a80 | 2009-12-07 19:32:28 +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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
| 20 | <parent>
|
| 21 | <groupId>org.apache.felix</groupId>
|
| 22 | <artifactId>felix-parent</artifactId>
|
| 23 | <version>1.2.0</version>
|
| 24 | <relativePath>../../pom/pom.xml</relativePath>
|
| 25 | </parent>
|
| 26 |
|
| 27 | <modelVersion>4.0.0</modelVersion>
|
| 28 | <packaging>bundle</packaging>
|
| 29 | <name>Apache Felix User Admin Service</name>
|
| 30 | <version>0.9.0-SNAPSHOT</version>
|
| 31 | <artifactId>org.apache.felix.useradmin</artifactId>
|
| 32 | <dependencies>
|
| 33 | <dependency>
|
| 34 | <groupId>org.osgi</groupId>
|
| 35 | <artifactId>org.osgi.core</artifactId>
|
| 36 | <version>4.0.0</version>
|
| 37 | <scope>provided</scope>
|
| 38 | </dependency>
|
| 39 | <dependency>
|
| 40 | <groupId>org.osgi</groupId>
|
| 41 | <artifactId>org.osgi.compendium</artifactId>
|
| 42 | <version>4.0.0</version>
|
| 43 | </dependency>
|
| 44 | </dependencies>
|
| 45 | <build>
|
| 46 | <plugins>
|
| 47 | <plugin>
|
| 48 | <groupId>org.apache.felix</groupId>
|
| 49 | <artifactId>maven-bundle-plugin</artifactId>
|
| 50 | <extensions>true</extensions>
|
| 51 | <configuration>
|
| 52 | <instructions>
|
| 53 | <Bundle-Name>Apache Felix User Admin Service</Bundle-Name>
|
| 54 | <Bundle-Description>
|
| 55 | An implementation of the OSGi User Admin Service
|
| 56 | </Bundle-Description>
|
| 57 | <Bundle-Activator>
|
| 58 | ${pom.artifactId}.impl.Activator
|
| 59 | </Bundle-Activator>
|
| 60 | <Bundle-SymbolicName>
|
| 61 | ${pom.artifactId}
|
| 62 | </Bundle-SymbolicName>
|
| 63 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
|
| 64 | <Export-Package>
|
| 65 | </Export-Package>
|
| 66 | <Private-Package>
|
| 67 | org.apache.felix.useradmin.*
|
| 68 | </Private-Package>
|
| 69 | <Export-Service>
|
| 70 | org.osgi.service.useradmin.UserAdmin
|
| 71 | </Export-Service>
|
| 72 | <Include-Resource>
|
| 73 | </Include-Resource>
|
| 74 | </instructions>
|
| 75 | </configuration>
|
| 76 | </plugin>
|
| 77 | <plugin>
|
| 78 | <groupId>org.codehaus.mojo</groupId>
|
| 79 | <artifactId>rat-maven-plugin</artifactId>
|
| 80 | <configuration>
|
| 81 | <excludeSubProjects>false</excludeSubProjects>
|
| 82 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
|
| 83 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
|
| 84 | <excludes>
|
| 85 | <param>doc/*</param>
|
| 86 | <param>maven-eclipse.xml</param>
|
| 87 | <param>.checkstyle</param>
|
| 88 | <param>.externalToolBuilders/*</param>
|
| 89 | </excludes>
|
| 90 | </configuration>
|
| 91 | </plugin>
|
| 92 | </plugins>
|
| 93 | </build>
|
| 94 | </project>
|