Merge "netconf-ssh dependency cleanup"
[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"
2   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   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>sal-parent</artifactId>
7     <version>1.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-rest-connector</artifactId>
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   </scm>
15
16   <dependencies>
17     <dependency>
18       <groupId>${project.groupId}</groupId>
19       <artifactId>sal-core-api</artifactId>
20       <version>1.0-SNAPSHOT</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       <version>${yang.version}</version>
44     </dependency>
45         <dependency>
46       <groupId>org.opendaylight.yangtools</groupId>
47       <artifactId>yang-model-util</artifactId>
48       <version>${yang.version}</version>
49     </dependency>
50     <dependency>
51       <groupId>com.google.code.gson</groupId>
52       <artifactId>gson</artifactId>
53       <version>2.2.4</version>
54     </dependency>
55     
56     <!-- Testing Dependencies -->
57     <dependency>
58       <groupId>junit</groupId>
59       <artifactId>junit</artifactId>
60       <scope>test</scope>
61     </dependency>
62     <dependency>
63       <groupId>org.mockito</groupId>
64       <artifactId>mockito-all</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>ch.qos.logback</groupId>
69       <artifactId>logback-classic</artifactId>
70       <version>1.0.9</version>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.yangtools</groupId>
75       <artifactId>yang-parser-impl</artifactId>
76       <version>${yang.version}</version>
77       <scope>test</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.glassfish.jersey.test-framework.providers</groupId>
81       <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
82       <version>2.4</version>
83       <scope>test</scope>
84     </dependency>
85     <dependency>
86         <groupId>org.opendaylight.yangtools</groupId>
87         <artifactId>yang-model-util</artifactId>
88         <version>0.5.9-SNAPSHOT</version>
89     </dependency>
90   </dependencies>
91
92   <build>
93     <plugins>
94       <plugin>
95         <groupId>org.eclipse.xtend</groupId>
96         <artifactId>xtend-maven-plugin</artifactId>
97       </plugin>
98       <plugin>
99         <groupId>org.apache.felix</groupId>
100         <artifactId>maven-bundle-plugin</artifactId>
101         <extensions>true</extensions>
102         <configuration>
103           <instructions>
104             <Bundle-Name>MD SAL Restconf Connector</Bundle-Name>
105             <Private-Package>
106               org.opendaylight.controller.sal.rest.*,
107               org.opendaylight.controller.sal.restconf.impl,
108               org.eclipse.xtend2.lib,
109               org.eclipse.xtend.lib,
110               org.eclipse.xtext.xbase.*
111             </Private-Package>
112             <Import-Package>
113             *,
114             com.sun.jersey.spi.container.servlet
115             </Import-Package>
116             <Bundle-Activator>org.opendaylight.controller.sal.rest.impl.RestconfProvider</Bundle-Activator>
117             <Web-ContextPath>/restconf</Web-ContextPath>
118           </instructions>
119         </configuration>
120       </plugin>
121     </plugins>
122   </build>
123   <packaging>bundle</packaging>
124 </project>