blob: 5e62d5b1fc3ef8df8642f2e26935cb70b4958c7d [file] [log] [blame]
Benjamin, Maxe7f75272020-04-30 10:41:46 -04001<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>
seshukmadbd1c42020-08-03 19:23:51 +05307 <version>1.7.1-SNAPSHOT</version>
Benjamin, Maxe7f75272020-04-30 10:41:46 -04008 </parent>
9 <artifactId>fluent-builder-maven-plugin</artifactId>
10 <packaging>maven-plugin</packaging>
Benjamin, Maxe7f75272020-04-30 10:41:46 -040011 <build>
Benjamin, Max23f8d802020-10-16 13:18:43 -040012 <pluginManagement>
Benjamin, Maxe5cd3962020-10-01 16:42:37 -040013 <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>
Benjamin, Maxe7f75272020-04-30 10:41:46 -040042 <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</groupId>
72 <artifactId>swagger-parser</artifactId>
73 <version>1.0.50</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>