3188316fdd2dbe039864b59188cfdca2f2d91f7e
[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.controller</groupId>
7         <artifactId>config-parent</artifactId>
8         <version>0.6.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.5.0-SNAPSHOT</version>
15     <packaging>bundle</packaging>
16     <properties>
17         <sal-binding-api.version>1.5.0-SNAPSHOT</sal-binding-api.version>
18     </properties>
19     <dependencies>
20         <dependency>
21             <groupId>${project.groupId}</groupId>
22             <artifactId>packetcable-driver</artifactId>
23             <version>${project.version}</version>
24         </dependency>
25         <dependency>
26             <groupId>${project.groupId}</groupId>
27             <artifactId>packetcable-policy-model</artifactId>
28             <version>${project.version}</version>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.controller</groupId>
32             <artifactId>config-api</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.controller</groupId>
36             <artifactId>sal-binding-api</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.controller</groupId>
40             <artifactId>sal-binding-config</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>junit</groupId>
44             <artifactId>junit</artifactId>
45             <scope>test</scope>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.packetcable</groupId>
49             <artifactId>packetcable-emulator</artifactId>
50             <version>1.5.0-SNAPSHOT</version>
51             <scope>test</scope>
52         </dependency>
53         <dependency>
54             <groupId>org.mockito</groupId>
55             <artifactId>mockito-core</artifactId>
56             <scope>test</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.powermock</groupId>
60             <artifactId>powermock-core</artifactId>
61             <scope>test</scope>
62         </dependency>
63         <dependency>
64             <groupId>org.powermock</groupId>
65             <artifactId>powermock-module-junit4</artifactId>
66             <scope>test</scope>
67         </dependency>
68         <dependency>
69             <groupId>org.powermock</groupId>
70             <artifactId>powermock-api-mockito</artifactId>
71             <scope>test</scope>
72         </dependency>
73     </dependencies>
74     <build>
75         <plugins>
76             <plugin>
77                 <artifactId>maven-checkstyle-plugin</artifactId>
78                 <configuration>
79                     <skip>true</skip>
80                 </configuration>
81             </plugin>
82         </plugins>
83     </build>
84 </project>