Clean-up pom.xml layout
[controller.git] / opendaylight / config / config-manager-facade-xml / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
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-manager-facade-xml</artifactId>
16     <name>${project.artifactId}</name>
17     <packaging>bundle</packaging>
18
19     <dependencyManagement>
20         <dependencies>
21             <dependency>
22                 <groupId>org.opendaylight.mdsal</groupId>
23                 <artifactId>mdsal-artifacts</artifactId>
24                 <version>2.2.0-SNAPSHOT</version>
25                 <type>pom</type>
26                 <scope>import</scope>
27             </dependency>
28             <dependency>
29                 <groupId>org.opendaylight.controller</groupId>
30                 <artifactId>config-artifacts</artifactId>
31                 <version>0.6.0-SNAPSHOT</version>
32                 <type>pom</type>
33                 <scope>import</scope>
34             </dependency>
35             <dependency>
36                 <groupId>org.opendaylight.yangtools</groupId>
37                 <artifactId>yangtools-artifacts</artifactId>
38                 <version>1.1.0-SNAPSHOT</version>
39                 <type>pom</type>
40                 <scope>import</scope>
41             </dependency>
42         </dependencies>
43     </dependencyManagement>
44
45     <dependencies>
46         <dependency>
47             <groupId>org.opendaylight.controller</groupId>
48             <artifactId>config-util</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.controller</groupId>
52             <artifactId>yang-jmx-generator</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.yangtools</groupId>
56             <artifactId>yang-data-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.mdsal</groupId>
60             <artifactId>mdsal-binding-generator-impl</artifactId></dependency>
61         <dependency>
62             <groupId>org.slf4j</groupId>
63             <artifactId>slf4j-api</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>junit</groupId>
67             <artifactId>junit</artifactId>
68             <scope>test</scope>
69         </dependency>
70     </dependencies>
71
72     <profiles>
73         <!-- Turn off doclint on aggregated API javadoc build. -->
74         <profile>
75             <id>jdk8</id>
76             <activation>
77                 <jdk>[1.8,)</jdk>
78             </activation>
79
80             <build>
81                 <plugins>
82                     <plugin>
83                         <groupId>org.apache.maven.plugins</groupId>
84                         <artifactId>maven-javadoc-plugin</artifactId>
85                         <configuration>
86                             <additionalparam>-Xdoclint:none</additionalparam>
87                         </configuration>
88                     </plugin>
89                 </plugins>
90             </build>
91         </profile>
92     </profiles>
93     <build>
94         <plugins>
95             <plugin>
96                 <groupId>org.apache.felix</groupId>
97                 <artifactId>maven-bundle-plugin</artifactId>
98                 <extensions>true</extensions>
99                 <configuration>
100                     <instructions>
101                         <Bundle-Activator>org.opendaylight.controller.config.facade.xml.osgi.YangStoreActivator</Bundle-Activator>
102                     </instructions>
103                 </configuration>
104             </plugin>
105         </plugins>
106     </build>
107
108 </project>