Add v12 api changes for the new release code
[aai/aai-common.git] / aai-auth / 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.aai.aai-common</groupId>
6         <artifactId>aai-common</artifactId>
7         <version>1.2.0-SNAPSHOT</version>
8     </parent>
9     <artifactId>aai-auth</artifactId>
10     <name>aai-auth</name>
11     <version>1.2.0-SNAPSHOT</version>
12
13     <properties>
14         <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
15         <checkstyle.config.location>google_checks.xml</checkstyle.config.location>
16     </properties>
17
18
19     <dependencies>
20
21         <dependency>
22             <groupId>com.fasterxml.jackson.core</groupId>
23             <artifactId>jackson-databind</artifactId>
24             <version>2.8.7</version>
25         </dependency>
26
27         <dependency>
28             <groupId>org.apache.httpcomponents</groupId>
29             <artifactId>httpclient</artifactId>
30             <version>4.5.3</version>
31         </dependency>
32     </dependencies>
33
34     <build>
35         <plugins>
36             <!-- license plugin -->
37             <plugin>
38                 <groupId>com.mycila</groupId>
39                 <artifactId>license-maven-plugin</artifactId>
40                 <version>3.0</version>
41                 <configuration>
42                     <header>License.txt</header>
43                     <includes>
44                         <include>src/main/java/**</include>
45                     </includes>
46                 </configuration>
47                 <executions>
48                     <execution>
49                         <goals>
50                             <goal>format</goal>
51                         </goals>
52                         <phase>process-sources</phase>
53                     </execution>
54                 </executions>
55             </plugin>
56
57
58             <plugin>
59                 <groupId>org.apache.maven.plugins</groupId>
60                 <artifactId>maven-site-plugin</artifactId>
61                 <version>3.3</version>
62             </plugin>
63             <plugin>
64                 <groupId>org.sonatype.plugins</groupId>
65                 <artifactId>nexus-staging-maven-plugin</artifactId>
66             </plugin>
67         </plugins>
68     </build>
69
70     <reporting>
71         <plugins>
72             <plugin>
73                 <groupId>org.apache.maven.plugins</groupId>
74                 <artifactId>maven-checkstyle-plugin</artifactId>
75                 <version>2.17</version>
76                 <reportSets>
77                     <reportSet>
78                         <reports>
79                             <report>checkstyle</report>
80                         </reports>
81                     </reportSet>
82                 </reportSets>
83             </plugin>
84         </plugins>
85     </reporting>
86 </project>