Release Carbon
[unimgr.git] / ovs-driver / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6     <parent>
7         <groupId>org.opendaylight.controller</groupId>
8         <artifactId>config-parent</artifactId>
9         <version>0.6.0-Carbon</version>
10         <relativePath/>
11     </parent>
12
13     <properties>
14         <checkstyle.skip>true</checkstyle.skip>
15         <powermock.version>1.6.4</powermock.version>
16         <openflow.version>0.4.0-Carbon</openflow.version>
17     </properties>
18
19     <modelVersion>4.0.0</modelVersion>
20     <groupId>org.opendaylight.unimgr</groupId>
21     <artifactId>ovs-driver</artifactId>
22     <version>0.2.0-Carbon</version>
23     <packaging>bundle</packaging>
24     <!-- <name> formatting is used by autorelease to parse and notify projects on
25          build failure. Please do not modify this unless you have a good reason. -->
26     <name>ODL :: unimgr :: ${project.artifactId}</name>
27
28     <build>
29         <plugins>
30             <plugin>
31                 <groupId>org.apache.maven.plugins</groupId>
32                 <artifactId>maven-compiler-plugin</artifactId>
33                 <configuration>
34                     <source>1.8</source>
35                     <target>1.8</target>
36                 </configuration>
37             </plugin>
38         </plugins>
39     </build>
40
41     <dependencies>
42         <dependency>
43             <groupId>${project.groupId}</groupId>
44             <artifactId>unimgr-impl</artifactId>
45             <version>${project.version}</version>
46         </dependency>
47
48         <!-- Testing Dependencies -->
49         <dependency>
50             <groupId>org.opendaylight.controller</groupId>
51             <artifactId>sal-binding-broker-impl</artifactId>
52             <scope>test</scope>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.controller</groupId>
56             <artifactId>sal-binding-broker-impl</artifactId>
57             <type>test-jar</type>
58             <scope>test</scope>
59         </dependency>
60         <dependency>
61             <groupId>junit</groupId>
62             <artifactId>junit</artifactId>
63             <scope>test</scope>
64         </dependency>
65
66         <dependency>
67             <groupId>org.mockito</groupId>
68             <artifactId>mockito-core</artifactId>
69             <scope>test</scope>
70         </dependency>
71
72         <dependency>
73             <groupId>org.powermock</groupId>
74             <artifactId>powermock-core</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.powermock</groupId>
79             <artifactId>powermock-module-junit4</artifactId>
80             <scope>test</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.powermock</groupId>
84             <artifactId>powermock-api-mockito</artifactId>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.powermock</groupId>
89             <artifactId>powermock-api-support</artifactId>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.powermock</groupId>
94             <artifactId>powermock-reflect</artifactId>
95             <scope>test</scope>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.mdsal.model</groupId>
99             <artifactId>ietf-yang-types-20130715</artifactId>
100         </dependency>
101
102         <dependency>
103             <groupId>org.opendaylight.openflowplugin.model</groupId>
104             <artifactId>model-flow-service</artifactId>
105             <version>${openflow.version}</version>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.openflowplugin.model</groupId>
109             <artifactId>model-flow-statistics</artifactId>
110             <version>${openflow.version}</version>
111         </dependency>
112     </dependencies>
113 </project>