0565bfa41f55afc5a59a21168dc4a435fc331308
[groupbasedpolicy.git] / renderers / opflex / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2015 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.3.0-SNAPSHOT</version>
14     <relativePath>../</relativePath>
15   </parent>
16
17   <artifactId>opflex-renderer</artifactId>
18   <packaging>bundle</packaging>
19
20   <dependencies>
21     <!-- model dependencies -->
22     <dependency>
23       <groupId>org.opendaylight.mdsal.model</groupId>
24       <artifactId>yang-ext</artifactId>
25     </dependency>
26
27     <!-- project specific dependencies -->
28     <dependency>
29       <groupId>com.fasterxml.jackson.core</groupId>
30       <artifactId>jackson-core</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>com.fasterxml.jackson.core</groupId>
34       <artifactId>jackson-databind</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>com.fasterxml.jackson.core</groupId>
38       <artifactId>jackson-annotations</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>io.netty</groupId>
42       <artifactId>netty-all</artifactId>
43       <version>${netty.version}</version>
44     </dependency>
45
46     <!-- testing dependencies -->
47     <dependency>
48       <groupId>junit</groupId>
49       <artifactId>junit</artifactId>
50       <scope>test</scope>
51     </dependency>
52     <dependency>
53       <groupId>org.mockito</groupId>
54       <artifactId>mockito-all</artifactId>
55       <scope>test</scope>
56     </dependency>
57   </dependencies>
58
59   <!-- project build -->
60   <build>
61     <plugins>
62       <plugin>
63         <groupId>org.apache.felix</groupId>
64         <artifactId>maven-bundle-plugin</artifactId>
65         <extensions>true</extensions>
66         <configuration>
67           <instructions>
68             <Import-Package>
69               org.apache.http.*;version="4.3.2",
70               *;resolution:=optional
71             </Import-Package>
72             <Embed-Dependency>httpclient,httpcore,commons-lang,commons-exec;type=!pom;inline=false</Embed-Dependency>
73             <Export-Package>
74               org.opendaylight.groupbasedpolicy.renderers.opflex.jsonrpc,
75             </Export-Package>
76           </instructions>
77           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
78         </configuration>
79       </plugin>
80       <plugin>
81         <groupId>org.opendaylight.yangtools</groupId>
82         <artifactId>yang-maven-plugin</artifactId>
83       </plugin>
84       <plugin>
85         <groupId>org.apache.maven.plugins</groupId>
86         <artifactId>maven-surefire-plugin</artifactId>
87         <configuration>
88           <redirectTestOutputToFile>true</redirectTestOutputToFile>
89         </configuration>
90       </plugin>
91     </plugins>
92   </build>
93 </project>
94