Convert mdsal-binding-dom-adapter to a JPMS module
[mdsal.git] / binding / mdsal-binding-dom-adapter / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. 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>12.0.0-SNAPSHOT</version>
16         <relativePath>../../dom/dom-parent</relativePath>
17     </parent>
18
19     <artifactId>mdsal-binding-dom-adapter</artifactId>
20     <packaging>bundle</packaging>
21
22     <dependencies>
23         <dependency>
24             <groupId>com.github.spotbugs</groupId>
25             <artifactId>spotbugs-annotations</artifactId>
26             <optional>true</optional>
27         </dependency>
28         <dependency>
29             <groupId>com.google.guava</groupId>
30             <artifactId>guava</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.gaul</groupId>
34             <artifactId>modernizer-maven-annotations</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.mdsal</groupId>
38             <artifactId>mdsal-binding-api</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.mdsal</groupId>
42             <artifactId>mdsal-dom-api</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.mdsal</groupId>
46             <artifactId>mdsal-dom-spi</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.mdsal</groupId>
50             <artifactId>mdsal-binding-dom-codec</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.yangtools</groupId>
54             <artifactId>yang-data-impl</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.kohsuke.metainf-services</groupId>
58             <artifactId>metainf-services</artifactId>
59             <optional>true</optional>
60         </dependency>
61         <dependency>
62             <groupId>com.guicedee.services</groupId>
63             <artifactId>javax.inject</artifactId>
64             <optional>true</optional>
65         </dependency>
66         <dependency>
67             <groupId>org.osgi</groupId>
68             <artifactId>org.osgi.annotation.versioning</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.osgi</groupId>
72             <artifactId>org.osgi.framework</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.osgi</groupId>
76             <artifactId>org.osgi.service.component</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.osgi</groupId>
80             <artifactId>org.osgi.service.component.annotations</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.osgi</groupId>
84             <artifactId>org.osgi.util.tracker</artifactId>
85         </dependency>
86
87         <dependency>
88             <groupId>org.opendaylight.mdsal</groupId>
89             <artifactId>mdsal-binding-generator</artifactId>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.mdsal</groupId>
94             <artifactId>mdsal-binding-runtime-spi</artifactId>
95             <scope>test</scope>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.mdsal</groupId>
99             <artifactId>mdsal-dom-broker</artifactId>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.mdsal</groupId>
104             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
105             <scope>test</scope>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.yangtools</groupId>
109             <artifactId>yang-test-util</artifactId>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.mdsal</groupId>
113             <artifactId>mdsal-binding-test-model</artifactId>
114         </dependency>
115         <dependency>
116             <groupId>org.mockito</groupId>
117             <artifactId>mockito-subclass</artifactId>
118             <scope>test</scope>
119         </dependency>
120     </dependencies>
121
122     <build>
123         <plugins>
124             <plugin>
125                 <artifactId>maven-jar-plugin</artifactId>
126                 <executions>
127                     <execution>
128                         <goals>
129                             <goal>test-jar</goal>
130                         </goals>
131                     </execution>
132                 </executions>
133             </plugin>
134             <plugin>
135                 <artifactId>maven-source-plugin</artifactId>
136                 <executions>
137                     <execution>
138                         <goals>
139                             <goal>test-jar-no-fork</goal>
140                         </goals>
141                     </execution>
142                 </executions>
143             </plugin>
144         </plugins>
145     </build>
146     <scm>
147         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
148         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
149         <tag>HEAD</tag>
150         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
151     </scm>
152 </project>