db7a15f5303dd5a9660750780cbb4529334bc3ce
[so.git] / graph-inventory / fluent-builder-maven-plugin / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2   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.so</groupId>
6     <artifactId>graph-inventory</artifactId>
7     <version>1.12.1-SNAPSHOT</version>
8   </parent>
9   <artifactId>fluent-builder-maven-plugin</artifactId>
10   <packaging>maven-plugin</packaging>
11   <build>
12     <pluginManagement>
13       <plugins>
14         <plugin>
15           <groupId>org.eclipse.m2e</groupId>
16           <artifactId>lifecycle-mapping</artifactId>
17           <version>1.0.0</version>
18           <configuration>
19             <lifecycleMappingMetadata>
20               <pluginExecutions>
21                 <pluginExecution>
22                   <pluginExecutionFilter>
23                     <groupId>org.apache.maven.plugins</groupId>
24                     <artifactId>maven-plugin-plugin</artifactId>
25                     <goals>
26                       <goal>descriptor</goal>
27                     </goals>
28                     <versionRange>[3.6.0,)</versionRange>
29                   </pluginExecutionFilter>
30                   <action>
31                     <execute>
32                       <runOnIncremental>false</runOnIncremental>
33                     </execute>
34                   </action>
35                 </pluginExecution>
36               </pluginExecutions>
37             </lifecycleMappingMetadata>
38           </configuration>
39         </plugin>
40       </plugins>
41     </pluginManagement>
42     <plugins>
43       <plugin>
44         <groupId>org.apache.maven.plugins</groupId>
45         <artifactId>maven-plugin-plugin</artifactId>
46         <version>3.6.0</version>
47         <configuration>
48           <goalPrefix>fluent-builder</goalPrefix>
49         </configuration>
50       </plugin>
51     </plugins>
52   </build>
53   <dependencies>
54     <dependency>
55       <groupId>org.apache.maven</groupId>
56       <artifactId>maven-plugin-api</artifactId>
57       <version>3.6.3</version>
58     </dependency>
59     <dependency>
60       <groupId>org.apache.maven.plugin-tools</groupId>
61       <artifactId>maven-plugin-annotations</artifactId>
62       <version>3.6.0</version>
63       <scope>provided</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.apache.maven</groupId>
67       <artifactId>maven-project</artifactId>
68       <version>2.2.1</version>
69     </dependency>
70     <dependency>
71       <groupId>io.swagger.parser.v3</groupId>
72       <artifactId>swagger-parser</artifactId>
73       <version>2.0.24</version>
74     </dependency>
75     <dependency>
76       <groupId>com.squareup</groupId>
77       <artifactId>javapoet</artifactId>
78       <version>1.12.1</version>
79     </dependency>
80   </dependencies>
81 </project>