Bump versions 9.0.4-SNAPSHOT
[controller.git] / raft-journal / pom.xml
1 <!--
2   ~ Copyright 2017-2021 Open Networking Foundation
3   ~ Copyright 2023 PANTHEON.tech, s.r.o.
4   ~
5   ~ Licensed under the Apache License, Version 2.0 (the "License");
6   ~ you may not use this file except in compliance with the License.
7   ~ You may obtain a copy of the License at
8   ~
9   ~     http://www.apache.org/licenses/LICENSE-2.0
10   ~
11   ~ Unless required by applicable law or agreed to in writing, software
12   ~ distributed under the License is distributed on an "AS IS" BASIS,
13   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   ~ See the License for the specific language governing permissions and
15   ~ limitations under the License.
16   -->
17 <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">
18     <modelVersion>4.0.0</modelVersion>
19
20     <parent>
21         <groupId>org.opendaylight.controller</groupId>
22         <artifactId>bundle-parent</artifactId>
23         <version>9.0.4-SNAPSHOT</version>
24         <relativePath>../bundle-parent</relativePath>
25     </parent>
26
27     <artifactId>raft-journal</artifactId>
28     <name>RAFT Journal</name>
29     <packaging>bundle</packaging>
30
31     <dependencies>
32         <dependency>
33             <groupId>io.netty</groupId>
34             <artifactId>netty-buffer</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.eclipse.jdt</groupId>
38             <artifactId>org.eclipse.jdt.annotation</artifactId>
39         </dependency>
40     </dependencies>
41
42     <build>
43         <plugins>
44             <!-- This project has a different license -->
45             <plugin>
46                 <artifactId>maven-dependency-plugin</artifactId>
47                 <executions>
48                     <execution>
49                         <id>unpack-license</id>
50                         <configuration>
51                             <skip>true</skip>
52                         </configuration>
53                     </execution>
54                 </executions>
55             </plugin>
56             <plugin>
57                 <artifactId>maven-antrun-plugin</artifactId>
58                 <executions>
59                     <execution>
60                         <id>copy-license</id>
61                         <phase>prepare-package</phase>
62                         <goals>
63                             <goal>run</goal>
64                         </goals>
65                         <configuration>
66                             <target>
67                                 <copy file="LICENSE" tofile="${project.build.directory}/classes/LICENSE"/>
68                             </target>
69                         </configuration>
70                     </execution>
71                 </executions>
72             </plugin>
73             <plugin>
74                 <artifactId>maven-checkstyle-plugin</artifactId>
75                 <executions>
76                     <execution>
77                         <id>check-license</id>
78                         <goals>
79                             <goal>check</goal>
80                         </goals>
81                         <configuration>
82                             <skip>true</skip>
83                         </configuration>
84                     </execution>
85                 </executions>
86             </plugin>
87         </plugins>
88     </build>
89 </project>