Bumping versions by 0.1.0 for next dev cycle
[controller.git] / opendaylight / config / config-persister-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
4   ~
5   ~ This program and the accompanying materials are made available under the
6   ~ terms of the Eclipse Public License v1.0 which accompanies this distribution,
7   ~ and is available at http://www.eclipse.org/legal/epl-v10.html
8   -->
9
10 <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">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <artifactId>config-subsystem</artifactId>
15     <groupId>org.opendaylight.controller</groupId>
16     <version>0.5.0-SNAPSHOT</version>
17   </parent>
18   <artifactId>config-persister-impl</artifactId>
19   <packaging>bundle</packaging>
20   <name>${project.artifactId}</name>
21
22   <dependencies>
23     <dependency>
24       <groupId>com.google.guava</groupId>
25       <artifactId>guava</artifactId>
26     </dependency>
27     <!-- compile dependencies -->
28     <dependency>
29       <groupId>org.opendaylight.controller</groupId>
30       <artifactId>config-persister-api</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.osgi</groupId>
34       <artifactId>org.osgi.core</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.slf4j</groupId>
38       <artifactId>slf4j-api</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>config-manager-facade-xml</artifactId>
43     </dependency>
44
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>config-persister-directory-xml-adapter</artifactId>
48       <scope>test</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>config-persister-file-xml-adapter</artifactId>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.yangtools</groupId>
57       <artifactId>mockito-configuration</artifactId>
58       <scope>test</scope>
59     </dependency>
60   </dependencies>
61
62   <build>
63     <plugins>
64       <plugin>
65         <groupId>org.apache.felix</groupId>
66         <artifactId>maven-bundle-plugin</artifactId>
67         <configuration>
68           <instructions>
69             <Bundle-Activator>org.opendaylight.controller.config.persist.impl.osgi.ConfigPersisterActivator</Bundle-Activator>
70             <Require-Capability>org.opendaylight.controller.config.persister.storage.adapter</Require-Capability>
71           </instructions>
72         </configuration>
73       </plugin>
74     </plugins>
75   </build>
76 </project>