diff options
author | Steve Smokowski <ss835w@att.com> | 2020-05-01 14:19:45 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-05-01 14:19:45 +0000 |
commit | 52ecd9c8163060b6715e1f13055d680c90229e65 (patch) | |
tree | f525fc36ffe1392ef2ade955e6cfebcb7b667962 /graph-inventory/fluent-builder-maven-plugin/pom.xml | |
parent | 9d305608206854a1820e742aaccd69fab2974353 (diff) | |
parent | e7f7527a7ad0397f9f98c739f6f4dfba357bcf3a (diff) |
Merge "add fluent type builder support to A&AI client"
Diffstat (limited to 'graph-inventory/fluent-builder-maven-plugin/pom.xml')
-rw-r--r-- | graph-inventory/fluent-builder-maven-plugin/pom.xml | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/graph-inventory/fluent-builder-maven-plugin/pom.xml b/graph-inventory/fluent-builder-maven-plugin/pom.xml new file mode 100644 index 0000000000..7833bce48e --- /dev/null +++ b/graph-inventory/fluent-builder-maven-plugin/pom.xml @@ -0,0 +1,55 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.onap.so</groupId> + <artifactId>graph-inventory</artifactId> + <version>1.6.0-SNAPSHOT</version> + </parent> + <artifactId>fluent-builder-maven-plugin</artifactId> + <packaging>maven-plugin</packaging> + <properties> + <maven.compiler.source>1.8</maven.compiler.source> + <maven.compiler.target>1.8</maven.compiler.target> + </properties> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-plugin-plugin</artifactId> + <version>3.6.0</version> + <configuration> + <goalPrefix>fluent-builder</goalPrefix> + </configuration> + </plugin> + </plugins> + </build> + <dependencies> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-plugin-api</artifactId> + <version>3.6.3</version> + </dependency> + <dependency> + <groupId>org.apache.maven.plugin-tools</groupId> + <artifactId>maven-plugin-annotations</artifactId> + <version>3.6.0</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-project</artifactId> + <version>2.2.1</version> + </dependency> + <dependency> + <groupId>io.swagger</groupId> + <artifactId>swagger-parser</artifactId> + <version>1.0.50</version> + </dependency> + <dependency> + <groupId>com.squareup</groupId> + <artifactId>javapoet</artifactId> + <version>1.12.1</version> + </dependency> + </dependencies> +</project> |