1a6190d919b182e4457d057c2b64719c0c925ada
[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.1-SNAPSHOT</version>
8     </parent>
9     <artifactId>aai-auth</artifactId>
10     <name>aai-auth</name>
11     <version>1.2.1-SNAPSHOT</version>
12
13     <properties>
14         <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
15     </properties>
16
17
18     <dependencies>
19
20         <dependency>
21             <groupId>com.fasterxml.jackson.core</groupId>
22             <artifactId>jackson-databind</artifactId>
23             <version>2.8.7</version>
24         </dependency>
25
26         <dependency>
27             <groupId>org.apache.httpcomponents</groupId>
28             <artifactId>httpclient</artifactId>
29             <version>4.5.3</version>
30         </dependency>
31     </dependencies>
32
33     <build>
34         <plugins>
35             <!-- license plugin -->
36             <plugin>
37                 <groupId>com.mycila</groupId>
38                 <artifactId>license-maven-plugin</artifactId>
39                 <version>3.0</version>
40                 <configuration>
41                     <header>License.txt</header>
42                     <includes>
43                         <include>src/main/java/**</include>
44                     </includes>
45                 </configuration>
46                 <executions>
47                     <execution>
48                         <goals>
49                             <goal>format</goal>
50                         </goals>
51                         <phase>process-sources</phase>
52                     </execution>
53                 </executions>
54             </plugin>
55
56
57             <plugin>
58                 <groupId>org.apache.maven.plugins</groupId>
59                 <artifactId>maven-site-plugin</artifactId>
60                 <version>3.3</version>
61             </plugin>
62             <plugin>
63                 <groupId>org.sonatype.plugins</groupId>
64                 <artifactId>nexus-staging-maven-plugin</artifactId>
65             </plugin>
66         </plugins>
67     </build>
68
69 </project>