Release aai/aai-common
[aai/aai-common.git] / aai-schema-ingest / pom.xml
1 <!--
2
3 ============LICENSE_START======================================================
4 org.onap.aai
5 ===============================================================================
6 Copyright © 2019 AT&T Intellectual Property. All rights reserved.
7 ===============================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11
12 http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ===========LICENSE_END=========================================================
20
21 -->
22 <project xmlns="http://maven.apache.org/POM/4.0.0"
23         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25         <modelVersion>4.0.0</modelVersion>
26         <parent>
27                 <groupId>org.onap.aai.aai-common</groupId>
28                 <artifactId>aai-parent</artifactId>
29                 <version>1.13.2</version>
30                 <relativePath>../aai-parent/pom.xml</relativePath>
31         </parent>
32         <artifactId>aai-schema-ingest</artifactId>
33         <name>aai-schema-ingest</name>
34         <packaging>jar</packaging>
35
36         <properties>
37                 <httpclient.version>4.5.13</httpclient.version>
38         <groovy.version>2.5.15</groovy.version>
39                 <springframework.version>4.3.24.RELEASE</springframework.version>
40         </properties>
41         <build>
42                 <plugins>
43                         <plugin>
44                                 <groupId>org.apache.maven.plugins</groupId>
45                                 <artifactId>maven-source-plugin</artifactId>
46                         </plugin>
47                         <plugin>
48                                 <!-- explicitly define maven-deploy-plugin after other to force exec
49                                         order -->
50                                 <groupId>org.apache.maven.plugins</groupId>
51                                 <artifactId>maven-deploy-plugin</artifactId>
52                         </plugin>
53                         <plugin>
54                                 <groupId>org.apache.maven.plugins</groupId>
55                                 <artifactId>maven-site-plugin</artifactId>
56                         </plugin>
57                 </plugins>
58         </build>
59
60         <dependencies>
61                 <dependency>
62                         <groupId>org.eclipse.persistence</groupId>
63                         <artifactId>eclipselink</artifactId>
64                 </dependency>
65                 <dependency>
66                         <groupId>com.google.guava</groupId>
67                         <artifactId>guava</artifactId>
68                 </dependency>
69                 <dependency>
70                         <groupId>org.codehaus.groovy</groupId>
71                         <artifactId>groovy</artifactId>
72             <version>${groovy.version}</version>
73                         <classifier>indy</classifier>
74                 </dependency>
75                 <dependency>
76                         <groupId>commons-io</groupId>
77                         <artifactId>commons-io</artifactId>
78                 </dependency>
79                 <dependency>
80                         <groupId>org.apache.commons</groupId>
81                         <artifactId>commons-lang3</artifactId>
82                 </dependency>
83                 <dependency>
84                         <groupId>org.onap.aai.aai-common</groupId>
85                         <artifactId>aai-rest</artifactId>
86                 </dependency>
87                 <dependency>
88                         <groupId>org.apache.tinkerpop</groupId>
89                         <artifactId>gremlin-core</artifactId>
90                 </dependency>
91                 <dependency>
92                         <groupId>com.jayway.jsonpath</groupId>
93                         <artifactId>json-path</artifactId>
94                 </dependency>
95                 <dependency>
96                         <groupId>javax.ws.rs</groupId>
97                         <artifactId>javax.ws.rs-api</artifactId>
98                 </dependency>
99                 <dependency>
100                         <groupId>org.springframework</groupId>
101                         <artifactId>spring-context</artifactId>
102                 </dependency>
103                 <dependency>
104                         <groupId>org.springframework</groupId>
105                         <artifactId>spring-web</artifactId>
106                 </dependency>
107                 <dependency>
108                         <groupId>org.springframework</groupId>
109                         <artifactId>spring-core</artifactId>
110                 </dependency>
111                 <dependency>
112                         <groupId>org.springframework</groupId>
113                         <artifactId>spring-expression</artifactId>
114                 </dependency>
115                 <dependency>
116                         <groupId>org.springframework</groupId>
117                         <artifactId>spring-webmvc</artifactId>
118                 </dependency>
119                 <dependency>
120                         <groupId>org.springframework.boot</groupId>
121                         <artifactId>spring-boot-starter-web</artifactId>
122                 </dependency>
123                 <dependency>
124                         <groupId>org.apache.httpcomponents</groupId>
125                         <artifactId>httpclient</artifactId>
126                 </dependency>
127                 <dependency>
128                         <groupId>org.springframework</groupId>
129                         <artifactId>spring-test</artifactId>
130                 </dependency>
131                 <dependency>
132                         <groupId>org.springframework.boot</groupId>
133                         <artifactId>spring-boot-test</artifactId>
134                         <scope>test</scope>
135                 </dependency>
136                 <dependency>
137                         <groupId>junit</groupId>
138                         <artifactId>junit</artifactId>
139                         <scope>test</scope>
140                 </dependency>
141                 <!-- TODO: Migrate tests to junit 5 and remove this dependency -->
142                 <dependency>
143                         <groupId>org.junit.vintage</groupId>
144                         <artifactId>junit-vintage-engine</artifactId>
145                         <scope>test</scope>
146                         <exclusions>
147                                         <exclusion>
148                                                         <groupId>org.hamcrest</groupId>
149                                                         <artifactId>hamcrest-core</artifactId>
150                                         </exclusion>
151                         </exclusions>
152                 </dependency>
153                 <dependency>
154                         <groupId>org.mockito</groupId>
155                         <artifactId>mockito-core</artifactId>
156                         <scope>test</scope>
157                 </dependency>
158                 <dependency>
159                         <groupId>com.att.eelf</groupId>
160                         <artifactId>eelf-core</artifactId>
161                 </dependency>
162                 <dependency>
163                         <groupId>com.google.code.gson</groupId>
164                         <artifactId>gson</artifactId>
165                 </dependency>
166         </dependencies>
167         <!-- Plugins and repositories -->
168         <pluginRepositories>
169                 <pluginRepository>
170                         <id>central</id>
171                         <url>https://repo1.maven.org/maven2</url>
172                 </pluginRepository>
173                 <pluginRepository>
174                         <id>EvoSuite</id>
175                         <name>EvoSuite Repository</name>
176                         <url>https://www.evosuite.org/m2</url>
177                 </pluginRepository>
178         </pluginRepositories>
179
180         <reporting>
181                 <plugins>
182                         <plugin>
183                                 <groupId>org.apache.maven.plugins</groupId>
184                                 <artifactId>maven-javadoc-plugin</artifactId>
185                                 <version>2.10.4</version>
186                                 <configuration>
187                                         <failOnError>false</failOnError>
188                                         <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
189                                         <docletArtifact>
190                                                 <groupId>org.umlgraph</groupId>
191                                                 <artifactId>umlgraph</artifactId>
192                                                 <version>5.6</version>
193                                         </docletArtifact>
194                                         <additionalparam>-views</additionalparam>
195                                         <useStandardDocletOptions>true</useStandardDocletOptions>
196                                 </configuration>
197                         </plugin>
198                 </plugins>
199         </reporting>
200
201 </project>