Release aai/aai-common
[aai/aai-common.git] / aai-schema-abstraction / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3
4     ============LICENSE_START=======================================================
5     org.onap.aai
6     ================================================================================
7     Copyright © 2019 AT&T Intellectual Property. All rights reserved.
8     Copyright © 2019 Amdocs
9     ================================================================================
10     Licensed under the Apache License, Version 2.0 (the "License");
11     you may not use this file except in compliance with the License.
12     You may obtain a copy of the License at
13
14        http://www.apache.org/licenses/LICENSE-2.0
15
16     Unless required by applicable law or agreed to in writing, software
17     distributed under the License is distributed on an "AS IS" BASIS,
18     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19     See the License for the specific language governing permissions and
20     limitations under the License.
21     ============LICENSE_END=========================================================
22
23 -->
24 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
26   <modelVersion>4.0.0</modelVersion>
27
28   <parent>
29     <groupId>org.onap.aai.aai-common</groupId>
30     <artifactId>aai-parent</artifactId>
31     <version>1.9.6</version>
32     <relativePath>../aai-parent/pom.xml</relativePath>
33   </parent>
34
35   <artifactId>aai-schema-abstraction</artifactId>
36   <name>aai-schema-abstraction</name>
37
38   <properties>
39     <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
40   </properties>
41
42   <dependencies>
43     <dependency>
44       <groupId>org.onap.aai.aai-common</groupId>
45       <artifactId>aai-schema-ingest</artifactId>
46       <exclusions>
47         <exclusion>
48           <groupId>org.powermock</groupId>
49           <artifactId>*</artifactId>
50         </exclusion>
51       </exclusions>
52     </dependency>
53
54     <dependency>
55       <groupId>org.onap.aai.logging-service</groupId>
56       <artifactId>common-logging</artifactId>
57     </dependency>
58
59     <dependency>
60       <groupId>org.onap.aai.logging-service</groupId>
61       <artifactId>logging-api</artifactId>
62     </dependency>
63
64     <dependency>
65         <groupId>ch.qos.logback</groupId>
66         <artifactId>logback-core</artifactId>
67     </dependency>
68     <dependency>
69         <groupId>ch.qos.logback</groupId>
70         <artifactId>logback-classic</artifactId>
71     </dependency>
72     <dependency>
73         <groupId>ch.qos.logback</groupId>
74         <artifactId>logback-access</artifactId>
75     </dependency>
76
77     <dependency>
78         <groupId>org.codehaus.jackson</groupId>
79         <artifactId>jackson-core-asl</artifactId>
80     </dependency>
81     <dependency>
82         <groupId>org.codehaus.jackson</groupId>
83         <artifactId>jackson-mapper-asl</artifactId>
84     </dependency>
85     <dependency>
86         <groupId>com.fasterxml.jackson.core</groupId>
87         <artifactId>jackson-databind</artifactId>
88     </dependency>
89
90     <dependency>
91       <groupId>org.onap.aai</groupId>
92       <artifactId>rest-client</artifactId>
93     </dependency>
94
95     <dependency>
96       <groupId>junit</groupId>
97       <artifactId>junit</artifactId>
98       <scope>test</scope>
99     </dependency>
100
101     <dependency>
102       <groupId>org.mockito</groupId>
103       <artifactId>mockito-core</artifactId>
104       <scope>test</scope>
105     </dependency>
106   </dependencies>
107
108   <build>
109     <plugins>
110       <!-- license plugin -->
111       <plugin>
112         <groupId>com.mycila</groupId>
113         <artifactId>license-maven-plugin</artifactId>
114       </plugin>
115
116       <plugin>
117         <groupId>org.apache.maven.plugins</groupId>
118         <artifactId>maven-site-plugin</artifactId>
119         <version>3.3</version>
120       </plugin>
121
122       <plugin>
123         <groupId>org.sonatype.plugins</groupId>
124         <artifactId>nexus-staging-maven-plugin</artifactId>
125       </plugin>
126     </plugins>
127   </build>
128
129 </project>