Update POM to inherit from oparent
[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.1.0-SNAPSHOT</version>
8         </parent>
9         <artifactId>aai-auth</artifactId>
10         <name>aai-auth</name>
11         <version>1.1.0-SNAPSHOT</version>
12
13         <properties>
14           <checkstyle.config.location>google_checks.xml</checkstyle.config.location>
15           <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
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         <distributionManagement>
71           <site>
72             <id>ecomp-site</id>
73             <url>dav:${onap.nexus.url}${sitePath}</url>
74           </site>
75         </distributionManagement>
76         <reporting>
77           <plugins>
78             <plugin>
79               <groupId>org.apache.maven.plugins</groupId>
80               <artifactId>maven-checkstyle-plugin</artifactId>
81               <version>2.17</version>
82               <reportSets>
83                 <reportSet>
84                   <reports>
85                     <report>checkstyle</report>
86                   </reports>
87                 </reportSet>
88               </reportSets>
89             </plugin>
90           </plugins>
91         </reporting>
92 </project>