Bump to odlparent 3.1.0 and yangtools 2.0.3
[packetcable.git] / packetcable-policy-server / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.mdsal</groupId>
7         <artifactId>binding-parent</artifactId>
8         <version>0.13.0-SNAPSHOT</version>
9         <relativePath />
10     </parent>
11     <artifactId>packetcable-policy-server</artifactId>
12     <groupId>org.opendaylight.packetcable</groupId>
13     <name>${project.artifactId}</name>
14     <version>1.8.0-SNAPSHOT</version>
15     <packaging>bundle</packaging>
16     <properties>
17         <sal-binding-api.version>1.8.0-SNAPSHOT</sal-binding-api.version>
18     </properties>
19
20     <dependencyManagement>
21         <dependencies>
22             <dependency>
23                 <groupId>org.opendaylight.controller</groupId>
24                 <artifactId>mdsal-artifacts</artifactId>
25                 <version>${sal-binding-api.version}</version>
26                 <type>pom</type>
27                 <scope>import</scope>
28             </dependency>
29         </dependencies>
30     </dependencyManagement>
31
32     <dependencies>
33         <dependency>
34             <groupId>${project.groupId}</groupId>
35             <artifactId>packetcable-driver</artifactId>
36             <version>${project.version}</version>
37         </dependency>
38         <dependency>
39             <groupId>${project.groupId}</groupId>
40             <artifactId>packetcable-policy-model</artifactId>
41             <version>${project.version}</version>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.controller</groupId>
45             <artifactId>sal-binding-api</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.apache.commons</groupId>
49             <artifactId>commons-lang3</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>junit</groupId>
53             <artifactId>junit</artifactId>
54             <scope>test</scope>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.packetcable</groupId>
58             <artifactId>packetcable-emulator</artifactId>
59             <version>1.8.0-SNAPSHOT</version>
60             <scope>test</scope>
61         </dependency>
62         <dependency>
63             <groupId>org.mockito</groupId>
64             <artifactId>mockito-core</artifactId>
65             <scope>test</scope>
66         </dependency>
67         <dependency>
68             <groupId>org.powermock</groupId>
69             <artifactId>powermock-core</artifactId>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.powermock</groupId>
74             <artifactId>powermock-module-junit4</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.powermock</groupId>
79             <artifactId>powermock-api-mockito</artifactId>
80             <scope>test</scope>
81         </dependency>
82     </dependencies>
83     <build>
84         <plugins>
85             <plugin>
86                 <artifactId>maven-checkstyle-plugin</artifactId>
87                 <configuration>
88                     <skip>true</skip>
89                 </configuration>
90             </plugin>
91         </plugins>
92     </build>
93 </project>