19c5e01410dbcb63dd69452138b9548880441265
[mdsal.git] / blueprint / mdsal-blueprint-binding / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright © 2019 Pantheon Technologies, s.r.o. and others. All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11     <modelVersion>4.0.0</modelVersion>
12     <parent>
13         <groupId>org.opendaylight.mdsal</groupId>
14         <artifactId>dom-parent</artifactId>
15         <version>4.0.15-SNAPSHOT</version>
16         <relativePath>../../dom/dom-parent</relativePath>
17     </parent>
18
19     <artifactId>mdsal-blueprint-binding</artifactId>
20     <packaging>bundle</packaging>
21     <name>${project.artifactId}</name>
22     <version>2.0.15-SNAPSHOT</version>
23
24     <dependencies>
25         <dependency>
26             <groupId>com.google.guava</groupId>
27             <artifactId>guava</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.apache.aries.blueprint</groupId>
31             <artifactId>org.apache.aries.blueprint.core</artifactId>
32             <scope>provided</scope>
33         </dependency>
34         <dependency>
35             <groupId>org.apache.aries</groupId>
36             <artifactId>org.apache.aries.util</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.mdsal</groupId>
40             <artifactId>mdsal-dom-api</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.mdsal</groupId>
44             <artifactId>mdsal-dom-spi</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.mdsal</groupId>
48             <artifactId>mdsal-binding-api</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.mdsal</groupId>
52             <artifactId>mdsal-binding-dom-codec</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.yangtools</groupId>
56             <artifactId>yang-data-codec-xml</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.osgi</groupId>
60             <artifactId>org.osgi.core</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.osgi</groupId>
64             <artifactId>org.osgi.compendium</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.slf4j</groupId>
68             <artifactId>slf4j-api</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.osgi</groupId>
72             <artifactId>org.osgi.service.event</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>com.google.truth</groupId>
76             <artifactId>truth</artifactId>
77         </dependency>
78         <!--dependency>
79             <groupId>org.opendaylight.controller</groupId>
80             <artifactId>sal-test-model</artifactId>
81             <scope>test</scope>
82         </dependency-->
83         <dependency>
84             <groupId>org.opendaylight.mdsal</groupId>
85             <artifactId>mdsal-binding-dom-adapter</artifactId>
86             <type>test-jar</type>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.mdsal</groupId>
91             <artifactId>mdsal-binding-dom-adapter</artifactId>
92             <scope>test</scope>
93         </dependency>
94     </dependencies>
95
96     <build>
97         <plugins>
98             <plugin>
99                 <groupId>org.apache.felix</groupId>
100                 <artifactId>maven-bundle-plugin</artifactId>
101                 <configuration>
102                     <instructions>
103                         <Bundle-Activator>org.opendaylight.controller.blueprint.BlueprintBundleTracker</Bundle-Activator>
104                     </instructions>
105                 </configuration>
106             </plugin>
107             <plugin>
108                 <groupId>org.apache.maven.plugins</groupId>
109                 <artifactId>maven-checkstyle-plugin</artifactId>
110                 <configuration>
111                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
112                 </configuration>
113             </plugin>
114             <plugin>
115                 <groupId>com.github.spotbugs</groupId>
116                 <artifactId>spotbugs-maven-plugin</artifactId>
117                 <configuration>
118                     <failOnError>true</failOnError>
119                 </configuration>
120             </plugin>
121         </plugins>
122     </build>
123 </project>