602dc89c515dbf959c644b8fa4cd7974a1d94102
[controller.git] / opendaylight / md-sal / sal-rest-connector / 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.0</version>
7   </parent>
8   <artifactId>sal-rest-connector</artifactId>
9   <scm>
10     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
11     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
12     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
13     <tag>master-tagforprepareonly-controller-bulk-release-2-1</tag>
14   </scm>
15
16   <dependencies>
17     <dependency>
18       <groupId>${project.groupId}</groupId>
19       <artifactId>sal-core-api</artifactId>
20       <version>1.0</version>
21     </dependency>
22     <dependency>
23       <groupId>${project.groupId}</groupId>
24       <artifactId>sal-connector-api</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.eclipse.xtend</groupId>
28       <artifactId>org.eclipse.xtend.lib</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.slf4j</groupId>
32       <artifactId>slf4j-api</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.jboss.resteasy</groupId>
36       <artifactId>jaxrs-api</artifactId>
37       <version>3.0.4.Final</version>
38       <scope>provided</scope>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.yangtools</groupId>
42       <artifactId>yang-data-impl</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.yangtools</groupId>
46       <artifactId>yang-model-util</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>com.google.code.gson</groupId>
50       <artifactId>gson</artifactId>
51       <version>2.2.4</version>
52     </dependency>
53     
54     <!-- Testing Dependencies -->
55     <dependency>
56       <groupId>junit</groupId>
57       <artifactId>junit</artifactId>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.mockito</groupId>
62       <artifactId>mockito-all</artifactId>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>ch.qos.logback</groupId>
67       <artifactId>logback-classic</artifactId>
68       <version>1.0.9</version>
69       <scope>test</scope>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.yangtools</groupId>
73       <artifactId>yang-parser-impl</artifactId>
74       <scope>test</scope>
75     </dependency>
76     <dependency>
77       <groupId>org.glassfish.jersey.test-framework.providers</groupId>
78       <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
79       <version>2.4</version>
80       <scope>test</scope>
81     </dependency>
82   </dependencies>
83
84   <build>
85     <plugins>
86       <plugin>
87         <groupId>org.eclipse.xtend</groupId>
88         <artifactId>xtend-maven-plugin</artifactId>
89       </plugin>
90       <plugin>
91         <groupId>org.apache.felix</groupId>
92         <artifactId>maven-bundle-plugin</artifactId>
93         <extensions>true</extensions>
94         <configuration>
95           <instructions>
96             <Bundle-Name>MD SAL Restconf Connector</Bundle-Name>
97             <Private-Package>
98               org.opendaylight.controller.sal.rest.*,
99               org.opendaylight.controller.sal.restconf.impl,
100               org.eclipse.xtend2.lib,
101               org.eclipse.xtend.lib,
102               org.eclipse.xtext.xbase.*,
103             </Private-Package>
104             <Import-Package>
105             *,
106             com.sun.jersey.spi.container.servlet
107             </Import-Package>
108             <Bundle-Activator>org.opendaylight.controller.sal.rest.impl.RestconfProvider</Bundle-Activator>
109             <Web-ContextPath>/restconf</Web-ContextPath>
110           </instructions>
111         </configuration>
112       </plugin>
113     </plugins>
114   </build>
115   <packaging>bundle</packaging>
116 </project>