Release Carbon
[groupbasedpolicy.git] / renderers / ios-xe / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved.
3   This program and the accompanying materials are made available under the
4   terms of the Eclipse Public License v1.0 which accompanies this distribution,
5   and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8     <modelVersion>4.0.0</modelVersion>
9
10     <parent>
11         <groupId>org.opendaylight.groupbasedpolicy</groupId>
12         <artifactId>groupbasedpolicy-renderers</artifactId>
13         <version>0.5.1-Carbon</version>
14         <relativePath>../</relativePath>
15     </parent>
16
17     <artifactId>ios-xe-renderer</artifactId>
18     <packaging>bundle</packaging>
19
20     <properties>
21         <netconf.version>1.2.1-Carbon</netconf.version>
22     </properties>
23
24     <dependencyManagement>
25         <dependencies>
26             <dependency>
27                 <groupId>org.opendaylight.netconf</groupId>
28                 <artifactId>netconf-artifacts</artifactId>
29                 <version>${netconf.version}</version>
30                 <type>pom</type>
31                 <scope>import</scope>
32             </dependency>
33             <dependency>
34                 <groupId>org.opendaylight.controller</groupId>
35                 <artifactId>mdsal-artifacts</artifactId>
36                 <version>${mdsal.version}</version>
37                 <type>pom</type>
38                 <scope>import</scope>
39             </dependency>
40         </dependencies>
41     </dependencyManagement>
42
43     <dependencies>
44         <!-- testing dependencies -->
45         <dependency>
46             <groupId>junit</groupId>
47             <artifactId>junit</artifactId>
48             <scope>test</scope>
49         </dependency>
50         <dependency>
51             <groupId>org.mockito</groupId>
52             <artifactId>mockito-core</artifactId>
53             <scope>test</scope>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.controller</groupId>
57             <artifactId>sal-binding-broker-impl</artifactId>
58             <type>test-jar</type>
59             <scope>test</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.groupbasedpolicy</groupId>
63             <artifactId>groupbasedpolicy</artifactId>
64             <version>${project.version}</version>
65             <type>test-jar</type>
66             <scope>test</scope>
67         </dependency>
68         <dependency>
69             <groupId>org.slf4j</groupId>
70             <artifactId>slf4j-log4j12</artifactId>
71             <scope>test</scope>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.sfc</groupId>
75             <artifactId>sfc-model</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.groupbasedpolicy</groupId>
79             <artifactId>sxp-ep-provider</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.groupbasedpolicy</groupId>
83             <artifactId>ip-sgt-distribution-service</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.sfc</groupId>
87             <artifactId>sfc-provider</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.controller.model</groupId>
91             <artifactId>model-inventory</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.netconf</groupId>
95             <artifactId>sal-netconf-connector</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.mdsal.model</groupId>
99             <artifactId>ietf-inet-types-2013-07-15</artifactId>
100             <version>1.2.1-Carbon</version>
101         </dependency>
102         <dependency>
103             <groupId>org.powermock</groupId>
104             <artifactId>powermock-module-junit4</artifactId>
105             <version>1.6.4</version>
106             <scope>test</scope>
107         </dependency>
108         <dependency>
109             <groupId>org.powermock</groupId>
110             <artifactId>powermock-api-mockito</artifactId>
111             <version>1.6.4</version>
112             <scope>test</scope>
113         </dependency>
114     </dependencies>
115
116     <build>
117         <plugins>
118             <plugin>
119                 <groupId>org.opendaylight.yangtools</groupId>
120                 <artifactId>yang-maven-plugin</artifactId>
121                 <executions>
122                     <execution>
123                         <id>config</id>
124                         <goals>
125                             <goal>generate-sources</goal>
126                         </goals>
127                         <configuration>
128                             <codeGenerators>
129                                 <generator>
130                                     <codeGeneratorClass>org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator</codeGeneratorClass>
131                                     <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
132                                     <additionalConfiguration>
133                                         <namespaceToPackage1>urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang</namespaceToPackage1>
134                                         <namespaceToPackage2>urn:opendaylight:params:xml:ns:yang:groupbasedpolicy:renderer==org.opendaylight.groupbasedpolicy.renderer</namespaceToPackage2>
135                                     </additionalConfiguration>
136                                 </generator>
137                             </codeGenerators>
138                             <inspectDependencies>true</inspectDependencies>
139                         </configuration>
140                     </execution>
141                 </executions>
142             </plugin>
143         </plugins>
144     </build>
145
146 </project>