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