Add properties for raw repo, docker reg
[oparent.git] / version-check-maven-plugin / pom.xml
1 <?xml version="1.0"?>
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   <parent>
5     <groupId>org.onap.oparent</groupId>
6     <artifactId>version</artifactId>
7     <version>1.0.0-SNAPSHOT</version>
8     <relativePath>..</relativePath>
9   </parent>
10   <artifactId>version-check-maven-plugin</artifactId>
11   <packaging>maven-plugin</packaging>
12   <name>version-check-maven-plugin Maven Plugin</name>
13   <url>https://www.onap.org</url>
14   <properties>
15     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16     <mavenVersion>3.2.3</mavenVersion>
17   </properties>
18   <dependencies>
19     <dependency>
20       <groupId>org.apache.maven</groupId>
21       <artifactId>maven-plugin-api</artifactId>
22       <version>2.0</version>
23     </dependency>
24     <dependency>
25       <groupId>org.apache.maven.plugin-tools</groupId>
26       <artifactId>maven-plugin-annotations</artifactId>
27       <version>3.2</version>
28       <scope>provided</scope>
29     </dependency>
30     <dependency>
31       <groupId>org.codehaus.plexus</groupId>
32       <artifactId>plexus-utils</artifactId>
33       <version>3.0.8</version>
34     </dependency>
35     <dependency>
36       <groupId>org.apache.maven</groupId>
37       <artifactId>maven-core</artifactId>
38       <version>${mavenVersion}</version>
39     </dependency>
40     <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-csv -->
41     <dependency>
42       <groupId>org.apache.commons</groupId>
43       <artifactId>commons-csv</artifactId>
44       <version>1.4</version>
45     </dependency>
46   </dependencies>
47   <build>
48     <plugins>
49       <plugin>
50         <groupId>org.apache.maven.plugins</groupId>
51         <artifactId>maven-plugin-plugin</artifactId>
52         <version>3.2</version>
53         <configuration>
54           <goalPrefix>version-check</goalPrefix>
55           <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
56         </configuration>
57         <executions>
58           <execution>
59             <id>mojo-descriptor</id>
60             <goals>
61               <goal>descriptor</goal>
62             </goals>
63           </execution>
64           <execution>
65             <id>help-goal</id>
66             <goals>
67               <goal>helpmojo</goal>
68             </goals>
69           </execution>
70         </executions>
71       </plugin>
72     </plugins>
73   </build>
74 </project>