blob: 4003bb80a670dbef81581546d88834e014f88b3e [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>
waqas.ikram98537632021-06-24 11:51:34 +01007 <version>1.9.0-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>
BOSLET, CORY8b98eb92021-03-15 11:25:54 -040071 <groupId>io.swagger.parser.v3</groupId>
Benjamin, Maxe7f75272020-04-30 10:41:46 -040072 <artifactId>swagger-parser</artifactId>
BOSLET, CORY8b98eb92021-03-15 11:25:54 -040073 <version>2.0.24</version>
Benjamin, Maxe7f75272020-04-30 10:41:46 -040074 </dependency>
75 <dependency>
76 <groupId>com.squareup</groupId>
77 <artifactId>javapoet</artifactId>
78 <version>1.12.1</version>
79 </dependency>
80 </dependencies>
81</project>