Bump PowerMock 2.0.0-beta.5 -> 2.0.0
[lispflowmapping.git] / mappingservice / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.odlparent</groupId>
7     <artifactId>odlparent</artifactId>
8     <version>4.0.8</version>
9     <relativePath/>
10   </parent>
11
12   <groupId>org.opendaylight.lispflowmapping</groupId>
13   <artifactId>mappingservice-parent</artifactId>
14   <version>1.9.0-SNAPSHOT</version>
15   <packaging>pom</packaging>
16   <!-- <name> formatting is used by autorelease to parse and notify projects on
17        build failure. Please do not modify this unless you have a good reason. -->
18   <name>ODL :: lispflowmapping :: ${project.artifactId}</name>
19
20   <properties>
21     <pmd.cpd.fail>true</pmd.cpd.fail>
22   </properties>
23
24   <modules>
25     <module>lisp-proto</module>
26     <module>api</module>
27     <module>inmemorydb</module>
28     <module>dsbackend</module>
29     <module>mapcache</module>
30     <module>config</module>
31     <module>implementation</module>
32     <module>southbound</module>
33     <module>neutron</module>
34     <module>shell</module>
35   </modules>
36
37   <dependencyManagement>
38     <dependencies>
39       <dependency>
40         <groupId>org.opendaylight.mdsal</groupId>
41         <artifactId>mdsal-artifacts</artifactId>
42         <version>3.0.4</version>
43         <type>pom</type>
44         <scope>import</scope>
45       </dependency>
46       <dependency>
47         <groupId>${project.groupId}</groupId>
48         <artifactId>lispflowmapping-artifacts</artifactId>
49         <version>${project.version}</version>
50         <type>pom</type>
51         <scope>import</scope>
52       </dependency>
53       <dependency>
54         <groupId>${project.groupId}</groupId>
55         <artifactId>common.unittest.tools</artifactId>
56         <version>${project.version}</version>
57         <scope>test</scope>
58       </dependency>
59       <dependency>
60         <groupId>junit-addons</groupId>
61         <artifactId>junit-addons</artifactId>
62         <version>1.4</version>
63         <scope>test</scope>
64       </dependency>
65       <!-- Use PowerMock 2 (beta) -->
66       <dependency>
67         <groupId>org.powermock</groupId>
68         <artifactId>powermock-api-mockito2</artifactId>
69         <version>2.0.0</version>
70         <scope>test</scope>
71       </dependency>
72       <dependency>
73         <groupId>org.powermock</groupId>
74         <artifactId>powermock-api-support</artifactId>
75         <version>2.0.0</version>
76         <scope>test</scope>
77       </dependency>
78       <dependency>
79         <groupId>org.powermock</groupId>
80         <artifactId>powermock-core</artifactId>
81         <version>2.0.0</version>
82         <scope>test</scope>
83       </dependency>
84       <dependency>
85         <groupId>org.powermock</groupId>
86         <artifactId>powermock-reflect</artifactId>
87         <version>2.0.0</version>
88         <scope>test</scope>
89       </dependency>
90       <dependency>
91         <groupId>org.powermock</groupId>
92         <artifactId>powermock-module-junit4</artifactId>
93         <version>2.0.0</version>
94         <scope>test</scope>
95       </dependency>
96     </dependencies>
97   </dependencyManagement>
98
99   <build>
100     <pluginManagement>
101       <plugins>
102         <plugin>
103           <!-- Enforce odlparent checkstyle -->
104           <groupId>org.apache.maven.plugins</groupId>
105           <artifactId>maven-checkstyle-plugin</artifactId>
106           <configuration>
107             <includeTestSourceDirectory>true</includeTestSourceDirectory>
108             <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
109           </configuration>
110         </plugin>
111       </plugins>
112     </pluginManagement>
113     <plugins>
114       <plugin>
115         <groupId>org.apache.felix</groupId>
116         <artifactId>maven-bundle-plugin</artifactId>
117       </plugin>
118     </plugins>
119   </build>
120 </project>