Bump odlparent to 6.0.0
[controller.git] / opendaylight / blueprint / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2016, 2018 Brocade Communications Systems, Inc. and others.
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 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>bundle-parent</artifactId>
15     <version>6.0.0</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.controller</groupId>
20   <artifactId>blueprint</artifactId>
21   <packaging>bundle</packaging>
22   <name>${project.artifactId}</name>
23   <version>0.12.0-SNAPSHOT</version>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>org.opendaylight.mdsal</groupId>
29         <artifactId>mdsal-artifacts</artifactId>
30         <version>4.0.6</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34       <dependency>
35         <groupId>org.opendaylight.controller</groupId>
36         <artifactId>mdsal-artifacts</artifactId>
37         <version>1.11.0-SNAPSHOT</version>
38         <type>pom</type>
39         <scope>import</scope>
40       </dependency>
41       <dependency>
42         <groupId>org.opendaylight.yangtools</groupId>
43         <artifactId>yangtools-artifacts</artifactId>
44         <version>3.0.5</version>
45         <type>pom</type>
46         <scope>import</scope>
47       </dependency>
48     </dependencies>
49   </dependencyManagement>
50
51   <dependencies>
52     <dependency>
53       <groupId>com.google.guava</groupId>
54       <artifactId>guava</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.apache.aries.blueprint</groupId>
58       <artifactId>org.apache.aries.blueprint.core</artifactId>
59       <scope>provided</scope>
60     </dependency>
61     <dependency>
62       <groupId>org.apache.aries</groupId>
63       <artifactId>org.apache.aries.util</artifactId>
64       <version>1.1.3</version>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>sal-binding-api</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.controller</groupId>
72       <artifactId>sal-core-api</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.controller</groupId>
76       <artifactId>sal-core-spi</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.mdsal</groupId>
80       <artifactId>mdsal-dom-spi</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.mdsal</groupId>
84       <artifactId>mdsal-binding-api</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.mdsal</groupId>
88       <artifactId>mdsal-binding-dom-codec</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.yangtools</groupId>
92       <artifactId>yang-data-codec-xml</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.osgi</groupId>
96       <artifactId>org.osgi.core</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.osgi</groupId>
100       <artifactId>org.osgi.compendium</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.slf4j</groupId>
104       <artifactId>slf4j-api</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>org.osgi</groupId>
108       <artifactId>org.osgi.service.event</artifactId>
109     </dependency>
110     <dependency>
111       <groupId>junit</groupId>
112       <artifactId>junit</artifactId>
113       <scope>test</scope>
114     </dependency>
115     <dependency>
116       <groupId>com.google.truth</groupId>
117       <artifactId>truth</artifactId>
118       <scope>test</scope>
119     </dependency>
120     <dependency>
121       <groupId>org.opendaylight.mdsal</groupId>
122       <artifactId>mdsal-binding-test-model</artifactId>
123       <scope>test</scope>
124     </dependency>
125     <dependency>
126       <groupId>org.opendaylight.mdsal</groupId>
127       <artifactId>mdsal-binding-dom-adapter</artifactId>
128       <type>test-jar</type>
129       <scope>test</scope>
130     </dependency>
131     <dependency>
132       <groupId>org.opendaylight.mdsal</groupId>
133       <artifactId>mdsal-binding-dom-adapter</artifactId>
134       <scope>test</scope>
135     </dependency>
136   </dependencies>
137
138   <build>
139     <plugins>
140       <plugin>
141         <groupId>org.apache.felix</groupId>
142         <artifactId>maven-bundle-plugin</artifactId>
143         <configuration>
144           <instructions>
145             <Bundle-Activator>org.opendaylight.controller.blueprint.BlueprintBundleTracker</Bundle-Activator>
146           </instructions>
147         </configuration>
148       </plugin>
149       <plugin>
150         <groupId>org.apache.maven.plugins</groupId>
151         <artifactId>maven-checkstyle-plugin</artifactId>
152         <configuration>
153           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
154         </configuration>
155       </plugin>
156       <plugin>
157         <groupId>com.github.spotbugs</groupId>
158         <artifactId>spotbugs-maven-plugin</artifactId>
159         <configuration>
160           <failOnError>true</failOnError>
161         </configuration>
162       </plugin>
163     </plugins>
164   </build>
165
166 </project>