Bump maven-checkstyle-plugin to 3.4.0
[odlparent.git] / copy-files-plugin / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2021 Pantheon Technologies, s.r.o. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8  -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <artifactId>odlparent-lite</artifactId>
15         <groupId>org.opendaylight.odlparent</groupId>
16         <version>14.0.0-SNAPSHOT</version>
17         <relativePath>../odlparent-lite</relativePath>
18     </parent>
19
20     <artifactId>copy-files-plugin</artifactId>
21     <packaging>maven-plugin</packaging>
22     <name>ODL :: odlparent :: ${project.artifactId}</name>
23
24     <prerequisites>
25         <maven>3.9.5</maven>
26     </prerequisites>
27
28     <dependencies>
29         <dependency>
30             <groupId>org.apache.maven</groupId>
31             <artifactId>maven-plugin-api</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.apache.maven.plugin-tools</groupId>
35             <artifactId>maven-plugin-annotations</artifactId>
36         </dependency>
37     </dependencies>
38
39     <build>
40         <plugins>
41             <plugin>
42                 <artifactId>maven-compiler-plugin</artifactId>
43                 <configuration>
44                     <proc>none</proc>
45                 </configuration>
46             </plugin>
47             <plugin>
48                 <artifactId>maven-plugin-plugin</artifactId>
49                 <configuration>
50                     <goalPrefix>copy</goalPrefix>
51                 </configuration>
52                 <executions>
53                     <execution>
54                         <id>mojo-descriptor</id>
55                         <goals>
56                             <goal>descriptor</goal>
57                         </goals>
58                     </execution>
59                 </executions>
60             </plugin>
61         </plugins>
62     </build>
63 </project>