Clean-up pom.xml layout
[controller.git] / opendaylight / config / config-persister-feature-adapter / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3
4     <modelVersion>4.0.0</modelVersion>
5
6     <parent>
7         <groupId>org.opendaylight.odlparent</groupId>
8         <artifactId>bundle-parent</artifactId>
9         <version>1.8.0-SNAPSHOT</version>
10         <relativePath/>
11     </parent>
12
13     <groupId>org.opendaylight.controller</groupId>
14     <version>0.6.0-SNAPSHOT</version>
15     <artifactId>config-persister-feature-adapter</artifactId>
16     <packaging>bundle</packaging>
17
18     <dependencyManagement>
19         <dependencies>
20             <dependency>
21                 <groupId>org.opendaylight.controller</groupId>
22                 <artifactId>config-artifacts</artifactId>
23                 <version>0.6.0-SNAPSHOT</version>
24                 <type>pom</type>
25                 <scope>import</scope>
26             </dependency>
27         </dependencies>
28     </dependencyManagement>
29
30     <dependencies>
31         <dependency>
32             <groupId>org.osgi</groupId>
33             <artifactId>org.osgi.core</artifactId>
34             <scope>provided</scope>
35         </dependency>
36         <dependency>
37             <groupId>org.apache.karaf.features</groupId>
38             <artifactId>org.apache.karaf.features.core</artifactId>
39             <version>${karaf.version}</version>
40             <scope>provided</scope>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.controller</groupId>
44             <artifactId>config-persister-impl</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.controller</groupId>
48             <artifactId>config-persister-api</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.controller</groupId>
52             <artifactId>config-persister-directory-xml-adapter</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.apache.felix</groupId>
56             <artifactId>org.apache.felix.utils</artifactId>
57             <version>1.6.0</version>
58             <scope>provided</scope>
59         </dependency>
60         <dependency>
61            <groupId>com.google.guava</groupId>
62            <artifactId>guava</artifactId>
63         </dependency>
64     </dependencies>
65
66     <build>
67         <plugins>
68             <plugin>
69                 <groupId>org.apache.felix</groupId>
70                 <artifactId>maven-bundle-plugin</artifactId>
71                 <extensions>true</extensions>
72                 <configuration>
73                     <instructions>
74                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
75                         <Bundle-Version>${project.version}</Bundle-Version>
76                         <Bundle-Activator>org.opendaylight.controller.configpusherfeature.ConfigPusherFeatureActivator</Bundle-Activator>
77                         <Private-Package>
78                             org.apache.karaf.features.internal.model,
79                             org.apache.felix.utils.version,
80                             org.opendaylight.controller.configpusherfeature.internal
81                         </Private-Package>
82                     </instructions>
83                 </configuration>
84             </plugin>
85         </plugins>
86     </build>
87
88 </project>