42a1d5a489cdbdcbb6641061fa89359ba94d2696
[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>11.0.0-SNAPSHOT</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>6.0.0-SNAPSHOT</version>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>org.opendaylight.yangtools</groupId>
29         <artifactId>yangtools-artifacts</artifactId>
30         <version>9.0.0-SNAPSHOT</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34       <dependency>
35         <groupId>org.opendaylight.mdsal</groupId>
36         <artifactId>mdsal-artifacts</artifactId>
37         <version>10.0.0-SNAPSHOT</version>
38         <type>pom</type>
39         <scope>import</scope>
40       </dependency>
41       <dependency>
42         <groupId>org.opendaylight.controller</groupId>
43         <artifactId>controller-artifacts</artifactId>
44         <version>${project.version}</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     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.mdsal</groupId>
67       <artifactId>mdsal-dom-spi</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.mdsal</groupId>
71       <artifactId>mdsal-binding-api</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.mdsal</groupId>
75       <artifactId>mdsal-binding-dom-codec-api</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.yangtools</groupId>
79       <artifactId>yang-data-codec-xml</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.osgi</groupId>
83       <artifactId>org.osgi.framework</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.osgi</groupId>
87       <artifactId>org.osgi.service.cm</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.osgi</groupId>
91       <artifactId>org.osgi.service.event</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.osgi</groupId>
95       <artifactId>org.osgi.util.tracker</artifactId>
96     </dependency>
97
98     <dependency>
99       <groupId>com.google.truth</groupId>
100       <artifactId>truth</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.mdsal</groupId>
104       <artifactId>mdsal-binding-test-model</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.mdsal</groupId>
108       <artifactId>mdsal-binding-test-utils</artifactId>
109     </dependency>
110   </dependencies>
111
112   <build>
113     <plugins>
114       <plugin>
115         <groupId>org.apache.felix</groupId>
116         <artifactId>maven-bundle-plugin</artifactId>
117         <configuration>
118           <instructions>
119             <Bundle-Activator>org.opendaylight.controller.blueprint.BlueprintBundleTracker</Bundle-Activator>
120           </instructions>
121         </configuration>
122       </plugin>
123     </plugins>
124   </build>
125
126 </project>