Rename some packages from openecomp to onap
[aai/aai-common.git] / aai-utils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6
7     <parent>
8         <groupId>org.onap.aai.aai-common</groupId>
9         <artifactId>aai-common</artifactId>
10         <version>1.2.0-SNAPSHOT</version>
11     </parent>
12     <artifactId>aai-utils</artifactId>
13     <name>aai-utils</name>
14     <version>1.2.0-SNAPSHOT</version>
15
16     <properties>
17         <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
18     </properties>
19
20     <dependencies>
21
22         <dependency>
23             <groupId>com.fasterxml.jackson.core</groupId>
24             <artifactId>jackson-databind</artifactId>
25             <version>2.8.7</version>
26         </dependency>
27
28         <dependency>
29             <groupId>org.apache.httpcomponents</groupId>
30             <artifactId>httpclient</artifactId>
31             <version>4.5.3</version>
32         </dependency>
33
34         <dependency>
35             <groupId>org.eclipse.persistence</groupId>
36             <artifactId>eclipselink</artifactId>
37             <version>2.6.2</version>
38         </dependency>
39
40         <!-- Common logging framework -->
41         <dependency>
42             <groupId>org.onap.aai.logging-service</groupId>
43             <artifactId>common-logging</artifactId>
44             <version>1.1.0</version>
45         </dependency>
46
47         <!-- https://mvnrepository.com/artifact/org.springframework/spring-core -->
48         <dependency>
49             <groupId>org.springframework</groupId>
50             <artifactId>spring-core</artifactId>
51             <version>4.3.10.RELEASE</version>
52         </dependency>
53
54         <dependency>
55             <groupId>org.onap.aai.aai-common</groupId>
56             <artifactId>aai-schema</artifactId>
57             <version>1.2.0-SNAPSHOT</version>
58             <exclusions>
59                 <exclusion>
60                     <groupId>*</groupId>
61                     <artifactId>*</artifactId>
62                 </exclusion>
63             </exclusions>
64         </dependency>
65
66         <dependency>
67             <groupId>junit</groupId>
68             <artifactId>junit</artifactId>
69             <version>4.11</version>
70             <scope>test</scope>
71         </dependency>
72     </dependencies>
73
74     <build>
75         <plugins>
76             <!-- license plugin -->
77             <plugin>
78                 <groupId>com.mycila</groupId>
79                 <artifactId>license-maven-plugin</artifactId>
80                 <version>3.0</version>
81                 <configuration>
82                     <header>License.txt</header>
83                     <includes>
84                         <include>src/main/java/**</include>
85                     </includes>
86                 </configuration>
87                 <executions>
88                     <execution>
89                         <goals>
90                             <goal>format</goal>
91                         </goals>
92                         <phase>process-sources</phase>
93                     </execution>
94                 </executions>
95             </plugin>
96
97             <plugin>
98                 <groupId>org.apache.maven.plugins</groupId>
99                 <artifactId>maven-site-plugin</artifactId>
100                 <version>3.3</version>
101             </plugin>
102             <plugin>
103                 <groupId>org.sonatype.plugins</groupId>
104                 <artifactId>nexus-staging-maven-plugin</artifactId>
105             </plugin>
106         </plugins>
107     </build>
108
109 </project>