Release odlparent
[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>13.0.9</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.8.3</maven>
26     </prerequisites>
27
28     <dependencies>
29         <dependency>
30             <groupId>org.apache.maven</groupId>
31             <artifactId>maven-plugin-api</artifactId>
32             <version>3.8.3</version>
33             <scope>provided</scope>
34         </dependency>
35         <dependency>
36             <groupId>org.apache.maven.plugin-tools</groupId>
37             <artifactId>maven-plugin-annotations</artifactId>
38             <version>3.8.2</version>
39             <scope>provided</scope>
40         </dependency>
41     </dependencies>
42
43     <build>
44         <plugins>
45             <plugin>
46                 <artifactId>maven-plugin-plugin</artifactId>
47                 <version>3.8.2</version>
48                 <executions>
49                     <execution>
50                         <id>mojo-descriptor</id>
51                         <goals>
52                             <goal>descriptor</goal>
53                         </goals>
54                     </execution>
55                 </executions>
56             </plugin>
57         </plugins>
58     </build>
59 </project>