Merge "update the release notes for the F maintenance release"
[so.git] / graph-inventory / fluent-builder-maven-plugin / pom.xml
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>
7     <version>1.7.1-SNAPSHOT</version>
8   </parent>
9   <artifactId>fluent-builder-maven-plugin</artifactId>
10   <packaging>maven-plugin</packaging>
11   <properties>
12     <maven.compiler.source>1.8</maven.compiler.source>
13     <maven.compiler.target>1.8</maven.compiler.target>
14   </properties>
15   <build>
16     <plugins>
17       <plugin>
18         <groupId>org.apache.maven.plugins</groupId>
19         <artifactId>maven-plugin-plugin</artifactId>
20         <version>3.6.0</version>
21         <configuration>
22           <goalPrefix>fluent-builder</goalPrefix>
23         </configuration>
24       </plugin>
25     </plugins>
26   </build>
27   <dependencies>
28     <dependency>
29       <groupId>org.apache.maven</groupId>
30       <artifactId>maven-plugin-api</artifactId>
31       <version>3.6.3</version>
32     </dependency>
33     <dependency>
34       <groupId>org.apache.maven.plugin-tools</groupId>
35       <artifactId>maven-plugin-annotations</artifactId>
36       <version>3.6.0</version>
37       <scope>provided</scope>
38     </dependency>
39     <dependency>
40       <groupId>org.apache.maven</groupId>
41       <artifactId>maven-project</artifactId>
42       <version>2.2.1</version>
43     </dependency>
44     <dependency>
45       <groupId>io.swagger</groupId>
46       <artifactId>swagger-parser</artifactId>
47       <version>1.0.50</version>
48     </dependency>
49     <dependency>
50       <groupId>com.squareup</groupId>
51       <artifactId>javapoet</artifactId>
52       <version>1.12.1</version>
53     </dependency>
54   </dependencies>
55 </project>