Remove deprecated MD-SAL APIs
[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.4</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.13.0-SNAPSHOT</version>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>org.opendaylight.mdsal</groupId>
29         <artifactId>mdsal-artifacts</artifactId>
30         <version>5.0.9</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.12.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>4.0.6</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.mdsal</groupId>
68       <artifactId>mdsal-dom-spi</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.mdsal</groupId>
72       <artifactId>mdsal-binding-api</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.mdsal</groupId>
76       <artifactId>mdsal-binding-dom-codec</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.yangtools</groupId>
80       <artifactId>yang-data-codec-xml</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.osgi</groupId>
84       <artifactId>org.osgi.core</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.osgi</groupId>
88       <artifactId>osgi.cmpn</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.slf4j</groupId>
92       <artifactId>slf4j-api</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.osgi</groupId>
96       <artifactId>org.osgi.service.event</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>junit</groupId>
100       <artifactId>junit</artifactId>
101       <scope>test</scope>
102     </dependency>
103     <dependency>
104       <groupId>com.google.truth</groupId>
105       <artifactId>truth</artifactId>
106       <scope>test</scope>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.mdsal</groupId>
110       <artifactId>mdsal-binding-test-model</artifactId>
111       <scope>test</scope>
112     </dependency>
113     <dependency>
114       <groupId>org.opendaylight.mdsal</groupId>
115       <artifactId>mdsal-binding-dom-adapter</artifactId>
116       <type>test-jar</type>
117       <scope>test</scope>
118     </dependency>
119     <dependency>
120       <groupId>org.opendaylight.mdsal</groupId>
121       <artifactId>mdsal-binding-dom-adapter</artifactId>
122       <scope>test</scope>
123     </dependency>
124   </dependencies>
125
126   <build>
127     <plugins>
128       <plugin>
129         <groupId>org.apache.felix</groupId>
130         <artifactId>maven-bundle-plugin</artifactId>
131         <configuration>
132           <instructions>
133             <Bundle-Activator>org.opendaylight.controller.blueprint.BlueprintBundleTracker</Bundle-Activator>
134           </instructions>
135         </configuration>
136       </plugin>
137     </plugins>
138   </build>
139
140 </project>