Release Carbon
[unimgr.git] / cisco-xe-driver / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <parent>
13         <groupId>org.opendaylight.controller</groupId>
14         <artifactId>config-parent</artifactId>
15         <version>0.6.1-Carbon</version>
16         <relativePath />
17     </parent>
18
19     <properties>
20         <checkstyle.skip>true</checkstyle.skip>
21         <powermock.version>1.6.4</powermock.version>
22         <org.springframework.boot.version>1.4.1.RELEASE</org.springframework.boot.version>
23         <jboss.resteasy.version>3.0.19.Final</jboss.resteasy.version>
24         <com.github.spullara.mustache.java.version>0.9.4</com.github.spullara.mustache.java.version>
25     </properties>
26
27     <modelVersion>4.0.0</modelVersion>
28     <groupId>org.opendaylight.unimgr</groupId>
29     <artifactId>unimgr-cisco-xe-driver</artifactId>
30     <version>0.2.1-Carbon</version>
31     <packaging>bundle</packaging>
32     <build>
33         <plugins>
34             <plugin>
35                 <groupId>org.apache.maven.plugins</groupId>
36                 <artifactId>maven-compiler-plugin</artifactId>
37                 <configuration>
38                     <source>1.8</source>
39                     <target>1.8</target>
40                 </configuration>
41             </plugin>
42             <plugin>
43                 <groupId>org.apache.felix</groupId>
44                 <artifactId>maven-bundle-plugin</artifactId>
45                 <extensions>true</extensions>
46                 <configuration>
47                     <instructions>
48                         <Embed-Dependency>*;artifactId=compiler</Embed-Dependency>
49                     </instructions>
50                 </configuration>
51             </plugin>
52         </plugins>
53     </build>
54
55     <dependencies>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>unimgr-impl</artifactId>
59             <version>${project.version}</version>
60         </dependency>
61         <dependency>
62             <groupId>com.github.spullara.mustache.java</groupId>
63             <artifactId>mustache.java</artifactId>
64             <version>${com.github.spullara.mustache.java.version}</version>
65             <type>pom</type>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>unimgr-impl</artifactId>
70             <version>${project.version}</version>
71             <type>test-jar</type>
72             <scope>test</scope>
73         </dependency>
74
75         <!-- dependencies to use AbstractDataBrokerTest -->
76         <dependency>
77             <groupId>org.opendaylight.controller</groupId>
78             <artifactId>sal-binding-broker-impl</artifactId>
79             <scope>test</scope>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.controller</groupId>
83             <artifactId>sal-binding-broker-impl</artifactId>
84             <type>test-jar</type>
85             <scope>test</scope>
86         </dependency>
87
88         <!-- dependencies to use mustache.java project for CLI generation -->
89         <dependency>
90             <groupId>com.github.spullara.mustache.java</groupId>
91             <artifactId>compiler</artifactId>
92             <version>${com.github.spullara.mustache.java.version}</version>
93         </dependency>
94
95         <!-- Testing Dependencies -->
96         <dependency>
97             <groupId>junit</groupId>
98             <artifactId>junit</artifactId>
99             <scope>test</scope>
100         </dependency>
101
102         <dependency>
103             <groupId>org.mockito</groupId>
104             <artifactId>mockito-core</artifactId>
105             <scope>test</scope>
106         </dependency>
107
108         <dependency>
109             <groupId>org.powermock</groupId>
110             <artifactId>powermock-core</artifactId>
111             <scope>test</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.powermock</groupId>
115             <artifactId>powermock-module-junit4</artifactId>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>org.powermock</groupId>
120             <artifactId>powermock-api-mockito</artifactId>
121             <scope>test</scope>
122         </dependency>
123         <dependency>
124             <groupId>org.powermock</groupId>
125             <artifactId>powermock-api-support</artifactId>
126             <scope>test</scope>
127         </dependency>
128         <dependency>
129             <groupId>org.powermock</groupId>
130             <artifactId>powermock-reflect</artifactId>
131             <scope>test</scope>
132         </dependency>
133         <dependency>
134             <groupId>org.opendaylight.mdsal.model</groupId>
135             <artifactId>ietf-yang-types-20130715</artifactId>
136         </dependency>
137         <!-- For REST -->
138         <dependency>
139             <groupId>com.eclipsesource.jaxrs</groupId>
140             <artifactId>jersey-all</artifactId>
141         </dependency>
142     </dependencies>
143 </project>