blob: 689d1d1bee698788a1a8f3c4d8bc68273deb6b89 [file] [log] [blame]
Jan Willem Janssenf2f47cf2012-09-28 12:58:59 +00001<!--
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-->
Jan Willem Janssen6b2fe2e2012-11-30 14:55:29 +000019<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">
Jan Willem Janssenf2f47cf2012-09-28 12:58:59 +000020 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <artifactId>felix-parent</artifactId>
23 <groupId>org.apache.felix</groupId>
Jan Willem Janssen42472342012-12-04 10:50:14 +000024 <version>2.1</version>
Jan Willem Janssenf2f47cf2012-09-28 12:58:59 +000025 <relativePath>../../../pom/pom.xml</relativePath>
26 </parent>
27 <artifactId>org.apache.felix.useradmin.filestore</artifactId>
Jan Willem Janssenb00fe352012-11-30 14:55:47 +000028 <version>1.0.3-SNAPSHOT</version>
Jan Willem Janssenf2f47cf2012-09-28 12:58:59 +000029 <packaging>bundle</packaging>
30 <description>Provides a file-based repository store for the UserAdmin OSGi compendium service.</description>
31 <dependencies>
32 <dependency>
33 <groupId>org.osgi</groupId>
34 <artifactId>org.osgi.core</artifactId>
35 <version>4.0.0</version>
36 <scope>provided</scope>
37 </dependency>
38 <dependency>
39 <groupId>org.osgi</groupId>
40 <artifactId>org.osgi.compendium</artifactId>
41 <version>4.0.0</version>
42 </dependency>
43 <dependency>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>org.apache.felix.useradmin</artifactId>
Jan Willem Janssenb00fe352012-11-30 14:55:47 +000046 <version>1.0.4-SNAPSHOT</version>
Jan Willem Janssenf2f47cf2012-09-28 12:58:59 +000047 <type>bundle</type>
48 </dependency>
49 </dependencies>
50 <build>
51 <plugins>
Jan Willem Janssen42472342012-12-04 10:50:14 +000052 <plugin>
53 <groupId>org.apache.rat</groupId>
54 <artifactId>apache-rat-plugin</artifactId>
55 <configuration>
56 <includes>
57 <include>src/**</include>
58 </includes>
59 <excludes>
60 <exclude>src/main/resources/**</exclude>
61 </excludes>
62 </configuration>
63 </plugin>
Jan Willem Janssenf2f47cf2012-09-28 12:58:59 +000064 <plugin>
65 <groupId>org.apache.felix</groupId>
66 <artifactId>maven-bundle-plugin</artifactId>
67 <extensions>true</extensions>
68 <configuration>
69 <instructions>
70 <Bundle-Name>Apache Felix User Admin file-based repository store</Bundle-Name>
71 <Bundle-Description>
72 A file-based repository store for User Admin Service of Apache Felix.
73 </Bundle-Description>
74 <Bundle-Activator>
75 ${project.artifactId}.osgi.Activator
76 </Bundle-Activator>
77 <Bundle-SymbolicName>
78 ${project.artifactId}
79 </Bundle-SymbolicName>
80 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
81 <Import-Package>
82 org.osgi.service.useradmin; version="[1.1,1.2)",
83 org.apache.felix.useradmin; version="[1.0,1.1)",
84 *
85 </Import-Package>
86 <Export-Package>
87 </Export-Package>
88 <Private-Package>
89 ${project.artifactId}.*
90 </Private-Package>
91 </instructions>
92 </configuration>
93 </plugin>
Jan Willem Janssenf2f47cf2012-09-28 12:58:59 +000094 </plugins>
95 </build>
Jan Willem Janssenf2f47cf2012-09-28 12:58:59 +000096</project>