Benjamin, Max | e7f7527 | 2020-04-30 10:41:46 -0400 | [diff] [blame] | 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> |
seshukm | adbd1c4 | 2020-08-03 19:23:51 +0530 | [diff] [blame] | 7 | <version>1.7.1-SNAPSHOT</version> |
Benjamin, Max | e7f7527 | 2020-04-30 10:41:46 -0400 | [diff] [blame] | 8 | </parent> |
| 9 | <artifactId>fluent-builder-maven-plugin</artifactId> |
| 10 | <packaging>maven-plugin</packaging> |
Benjamin, Max | e7f7527 | 2020-04-30 10:41:46 -0400 | [diff] [blame] | 11 | <build> |
Benjamin, Max | 23f8d80 | 2020-10-16 13:18:43 -0400 | [diff] [blame^] | 12 | <pluginManagement> |
Benjamin, Max | e5cd396 | 2020-10-01 16:42:37 -0400 | [diff] [blame] | 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> |
Benjamin, Max | e7f7527 | 2020-04-30 10:41:46 -0400 | [diff] [blame] | 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</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> |