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> |
| 12 | <plugins> |
| 13 | <plugin> |
| 14 | <groupId>org.apache.maven.plugins</groupId> |
| 15 | <artifactId>maven-plugin-plugin</artifactId> |
| 16 | <version>3.6.0</version> |
| 17 | <configuration> |
| 18 | <goalPrefix>fluent-builder</goalPrefix> |
| 19 | </configuration> |
| 20 | </plugin> |
| 21 | </plugins> |
| 22 | </build> |
| 23 | <dependencies> |
| 24 | <dependency> |
| 25 | <groupId>org.apache.maven</groupId> |
| 26 | <artifactId>maven-plugin-api</artifactId> |
| 27 | <version>3.6.3</version> |
| 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>org.apache.maven.plugin-tools</groupId> |
| 31 | <artifactId>maven-plugin-annotations</artifactId> |
| 32 | <version>3.6.0</version> |
| 33 | <scope>provided</scope> |
| 34 | </dependency> |
| 35 | <dependency> |
| 36 | <groupId>org.apache.maven</groupId> |
| 37 | <artifactId>maven-project</artifactId> |
| 38 | <version>2.2.1</version> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>io.swagger</groupId> |
| 42 | <artifactId>swagger-parser</artifactId> |
| 43 | <version>1.0.50</version> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>com.squareup</groupId> |
| 47 | <artifactId>javapoet</artifactId> |
| 48 | <version>1.12.1</version> |
| 49 | </dependency> |
| 50 | </dependencies> |
| 51 | </project> |