Jan Willem Janssen | e53f84e | 2012-11-30 13:18:54 +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 | --> |
Jan Willem Janssen | c05333f | 2012-11-30 14:59:03 +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"> |
Jan Willem Janssen | f2f47cf | 2012-09-28 12:58:59 +0000 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
| 22 | <artifactId>felix-parent</artifactId> |
| 23 | <groupId>org.apache.felix</groupId> |
Jan Willem Janssen | 4247234 | 2012-12-04 10:50:14 +0000 | [diff] [blame] | 24 | <version>2.1</version> |
Jan Willem Janssen | f2f47cf | 2012-09-28 12:58:59 +0000 | [diff] [blame] | 25 | <relativePath>../../../pom/pom.xml</relativePath> |
| 26 | </parent> |
| 27 | <artifactId>org.apache.felix.useradmin.mongodb</artifactId> |
Jan Willem Janssen | 19939f6 | 2012-11-30 14:59:21 +0000 | [diff] [blame] | 28 | <version>1.0.2-SNAPSHOT</version> |
Jan Willem Janssen | f2f47cf | 2012-09-28 12:58:59 +0000 | [diff] [blame] | 29 | <packaging>bundle</packaging> |
| 30 | <description>Provides a MongoDB store implementation for the User Admin 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.mongodb</groupId> |
| 45 | <artifactId>mongo-java-driver</artifactId> |
| 46 | <version>2.8.0</version> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.apache.felix</groupId> |
| 50 | <artifactId>org.apache.felix.useradmin</artifactId> |
Jan Willem Janssen | 19939f6 | 2012-11-30 14:59:21 +0000 | [diff] [blame] | 51 | <version>1.0.4-SNAPSHOT</version> |
Jan Willem Janssen | f2f47cf | 2012-09-28 12:58:59 +0000 | [diff] [blame] | 52 | <type>bundle</type> |
| 53 | </dependency> |
| 54 | </dependencies> |
| 55 | <build> |
| 56 | <plugins> |
| 57 | <plugin> |
| 58 | <artifactId>maven-compiler-plugin</artifactId> |
| 59 | <configuration> |
| 60 | <source>1.6</source> |
| 61 | <target>1.6</target> |
| 62 | </configuration> |
| 63 | </plugin> |
| 64 | <plugin> |
Jan Willem Janssen | 4247234 | 2012-12-04 10:50:14 +0000 | [diff] [blame] | 65 | <groupId>org.apache.rat</groupId> |
| 66 | <artifactId>apache-rat-plugin</artifactId> |
| 67 | <configuration> |
| 68 | <includes> |
| 69 | <include>src/**</include> |
| 70 | </includes> |
| 71 | <excludes> |
| 72 | <exclude>src/main/resources/**</exclude> |
| 73 | </excludes> |
| 74 | </configuration> |
| 75 | </plugin> |
| 76 | <plugin> |
Jan Willem Janssen | f2f47cf | 2012-09-28 12:58:59 +0000 | [diff] [blame] | 77 | <groupId>org.apache.felix</groupId> |
| 78 | <artifactId>maven-bundle-plugin</artifactId> |
| 79 | <extensions>true</extensions> |
| 80 | <configuration> |
| 81 | <instructions> |
| 82 | <Bundle-Name>Apache Felix User Admin Service MongoDB repository</Bundle-Name> |
| 83 | <Bundle-Description> |
| 84 | A MongoDB repository implementation for User Admin Compendium Service |
| 85 | </Bundle-Description> |
| 86 | <Bundle-Activator> |
| 87 | ${project.artifactId}.osgi.Activator |
| 88 | </Bundle-Activator> |
| 89 | <Bundle-SymbolicName> |
| 90 | ${project.artifactId} |
| 91 | </Bundle-SymbolicName> |
| 92 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
| 93 | <Import-Package> |
| 94 | org.osgi.service.useradmin; version="[1.1,1.2)", |
| 95 | * |
| 96 | </Import-Package> |
| 97 | <Export-Package> |
| 98 | </Export-Package> |
| 99 | <Private-Package> |
| 100 | ${project.artifactId}.* |
| 101 | </Private-Package> |
| 102 | </instructions> |
| 103 | </configuration> |
| 104 | </plugin> |
Jan Willem Janssen | f2f47cf | 2012-09-28 12:58:59 +0000 | [diff] [blame] | 105 | </plugins> |
| 106 | </build> |
Jan Willem Janssen | f2f47cf | 2012-09-28 12:58:59 +0000 | [diff] [blame] | 107 | </project> |