Make sure javax.inject is scope=provided
[mdsal.git] / yanglib / mdsal-yanglib-rfc8525 / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2019 PANTHEON.tech, 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
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.mdsal</groupId>
15         <artifactId>dom-parent</artifactId>
16         <version>5.0.6-SNAPSHOT</version>
17         <relativePath>../../dom/dom-parent</relativePath>
18     </parent>
19
20     <artifactId>mdsal-yanglib-rfc8525</artifactId>
21     <version>0.10.6-SNAPSHOT</version>
22     <packaging>bundle</packaging>
23
24     <dependencies>
25         <dependency>
26             <groupId>org.opendaylight.mdsal</groupId>
27             <artifactId>mdsal-yanglib-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
31             <artifactId>rfc8525</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.mdsal</groupId>
35             <artifactId>mdsal-binding-dom-codec</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.yangtools</groupId>
39             <artifactId>yang-parser-api</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.kohsuke.metainf-services</groupId>
43             <artifactId>metainf-services</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>javax.inject</groupId>
47             <artifactId>javax.inject</artifactId>
48             <scope>provided</scope>
49             <optional>true</optional>
50         </dependency>
51         <dependency>
52             <groupId>org.apache.aries.blueprint</groupId>
53             <artifactId>blueprint-maven-plugin-annotation</artifactId>
54             <optional>true</optional>
55         </dependency>
56
57         <dependency>
58             <groupId>org.opendaylight.yangtools</groupId>
59             <artifactId>yang-parser-impl</artifactId>
60             <scope>test</scope>
61         </dependency>
62     </dependencies>
63
64     <build>
65         <plugins>
66             <plugin>
67                 <groupId>org.apache.felix</groupId>
68                 <artifactId>maven-bundle-plugin</artifactId>
69                 <configuration>
70                     <instructions>
71                         <Automatic-Module-Name>org.opendaylight.mdsal.yanglib.rfc8525</Automatic-Module-Name>
72                     </instructions>
73                 </configuration>
74             </plugin>
75             <plugin>
76                 <groupId>org.apache.aries.blueprint</groupId>
77                 <artifactId>blueprint-maven-plugin</artifactId>
78             </plugin>
79         </plugins>
80     </build>
81     <scm>
82         <connection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</connection>
83         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</developerConnection>
84         <url>https://wiki.opendaylight.org/view/MD-SAL:Main</url>
85         <tag>HEAD</tag>
86     </scm>
87 </project>