8159707d57dd4e7cf3010f1aa6678af62cc52a4c
[controller.git] / opendaylight / md-sal / sal-restconf-broker / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <groupId>org.opendaylight.controller</groupId>
5         <artifactId>sal-parent</artifactId>
6         <version>1.1-SNAPSHOT</version>
7     </parent>
8     <artifactId>sal-restconf-broker</artifactId>
9     <packaging>bundle</packaging>
10     <scm>
11         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
14       <tag>HEAD</tag>
15   </scm>
16     <dependencies>
17         <dependency>
18             <groupId>org.opendaylight.controller</groupId>
19             <artifactId>sal-binding-api</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>org.opendaylight.controller</groupId>
23             <artifactId>sal-binding-util</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.opendaylight.controller</groupId>
27             <artifactId>sal-remote</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.controller</groupId>
31             <artifactId>sal-broker-impl</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.controller</groupId>
35             <artifactId>sal-binding-config</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.controller</groupId>
39             <artifactId>sal-core-api</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.yangtools</groupId>
43             <artifactId>restconf-client-api</artifactId>
44             <version>${yangtools.version}</version>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.yangtools</groupId>
48             <artifactId>restconf-client-impl</artifactId>
49             <version>${yangtools.version}</version>
50         </dependency>
51         <dependency>
52             <groupId>org.slf4j</groupId>
53             <artifactId>slf4j-api</artifactId>
54         </dependency>
55     </dependencies>
56     <build>
57         <plugins>
58             <plugin>
59                 <groupId>org.apache.felix</groupId>
60                 <artifactId>maven-bundle-plugin</artifactId>
61                 <extensions>true</extensions>
62                 <configuration>
63                     <instructions>
64                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
65                         <Import-Package>
66                                 *
67                         </Import-Package>
68                     </instructions>
69                 </configuration>
70             </plugin>
71             <plugin>
72                 <groupId>org.codehaus.mojo</groupId>
73                 <artifactId>build-helper-maven-plugin</artifactId>
74                 <version>1.8</version>
75                 <executions>
76                     <execution>
77                         <id>add-source</id>
78                         <phase>generate-sources</phase>
79                         <goals>
80                             <goal>add-source</goal>
81                         </goals>
82                         <configuration>
83                             <sources>
84                                 <source>${project.build.directory}/generated-sources/</source>
85                             </sources>
86                         </configuration>
87                     </execution>
88                 </executions>
89             </plugin>
90         </plugins>
91     </build>
92 </project>