66577208062cbe323fa57242073edb01bb7b1185
[groupbasedpolicy.git] / groupbasedpolicy / 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.mdsal</groupId>
12     <artifactId>binding-parent</artifactId>
13     <version>0.11.1-SNAPSHOT</version>
14     <relativePath/>
15   </parent>
16
17   <groupId>org.opendaylight.groupbasedpolicy</groupId>
18   <artifactId>groupbasedpolicy</artifactId>
19   <version>0.6.1-SNAPSHOT</version>
20   <packaging>bundle</packaging>
21   <!-- <name> formatting is used by autorelease to parse and notify projects on
22        build failure. Please do not modify this unless you have a good reason. -->
23   <name>ODL :: groupbasedpolicy :: ${project.artifactId}</name>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>org.opendaylight.controller</groupId>
29         <artifactId>mdsal-artifacts</artifactId>
30         <version>1.6.1-SNAPSHOT</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34     </dependencies>
35   </dependencyManagement>
36
37   <dependencies>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>sal-binding-api</artifactId>
41     </dependency>
42     <!-- model dependencies -->
43     <dependency>
44       <groupId>org.opendaylight.mdsal.model</groupId>
45       <artifactId>ietf-inet-types-2013-07-15</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.mdsal.model</groupId>
49       <artifactId>ietf-yang-types-20130715</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.mdsal.model</groupId>
53       <artifactId>yang-ext</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.mdsal</groupId>
57       <artifactId>mdsal-singleton-common-api</artifactId>
58     </dependency>
59     <!-- net utils dependencies -->
60     <dependency>
61       <groupId>com.googlecode.java-ipv6</groupId>
62       <artifactId>java-ipv6</artifactId>
63       <version>0.16</version>
64     </dependency>
65     <dependency>
66       <groupId>commons-net</groupId>
67       <artifactId>commons-net</artifactId>
68     </dependency>
69     <!-- testing dependencies -->
70     <dependency>
71       <groupId>junit</groupId>
72       <artifactId>junit</artifactId>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.mockito</groupId>
77       <artifactId>mockito-core</artifactId>
78       <scope>test</scope>
79     </dependency>
80     <dependency>
81       <groupId>org.powermock</groupId>
82       <artifactId>powermock-module-junit4</artifactId>
83       <scope>test</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.powermock</groupId>
87       <artifactId>powermock-api-mockito</artifactId>
88       <scope>test</scope>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.controller</groupId>
92       <artifactId>sal-binding-broker-impl</artifactId>
93       <type>test-jar</type>
94       <scope>test</scope>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.controller</groupId>
98       <artifactId>sal-binding-broker-impl</artifactId>
99       <scope>test</scope>
100     </dependency>
101     <dependency>
102         <groupId>org.opendaylight.controller.model</groupId>
103         <artifactId>model-inventory</artifactId>
104         <scope>test</scope>
105     </dependency>
106   </dependencies>
107
108 <!-- project build -->
109   <build>
110     <plugins>
111       <plugin>
112         <groupId>org.apache.felix</groupId>
113         <artifactId>maven-bundle-plugin</artifactId>
114         <extensions>true</extensions>
115         <configuration>
116           <instructions>
117             <Export-Package>
118               org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.*,
119               org.opendaylight.controller.config.yang.config.groupbasedpolicy.*,
120               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.config.groupbasedpolicy.*,
121               org.opendaylight.groupbasedpolicy.api.*,
122               org.opendaylight.groupbasedpolicy.dto,
123               org.opendaylight.groupbasedpolicy.util,
124               org.opendaylight.groupbasedpolicy.renderer.util
125             </Export-Package>
126             <Embed-Dependency>java-ipv6</Embed-Dependency>
127           </instructions>
128         </configuration>
129       </plugin>
130       <plugin>
131         <groupId>org.apache.maven.plugins</groupId>
132         <artifactId>maven-jar-plugin</artifactId>
133         <executions>
134           <execution>
135             <goals>
136               <goal>test-jar</goal>
137             </goals>
138           </execution>
139         </executions>
140       </plugin>
141     </plugins>
142   </build>
143 </project>