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.0</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                 <dependency>
142                         <groupId>org.mockito</groupId>
143                         <artifactId>mockito-all</artifactId>
144                         <scope>test</scope>
145                 </dependency>
146                 <dependency>
147                         <groupId>com.att.eelf</groupId>
148                         <artifactId>eelf-core</artifactId>
149                 </dependency>
150                 <dependency>
151                         <groupId>com.google.code.gson</groupId>
152                         <artifactId>gson</artifactId>
153                 </dependency>
154         </dependencies>
155         <!-- Plugins and repositories -->
156         <pluginRepositories>
157                 <pluginRepository>
158                         <id>central</id>
159                         <url>https://repo1.maven.org/maven2</url>
160                 </pluginRepository>
161                 <pluginRepository>
162                         <id>EvoSuite</id>
163                         <name>EvoSuite Repository</name>
164                         <url>https://www.evosuite.org/m2</url>
165                 </pluginRepository>
166         </pluginRepositories>
167
168         <reporting>
169                 <plugins>
170                         <plugin>
171                                 <groupId>org.apache.maven.plugins</groupId>
172                                 <artifactId>maven-javadoc-plugin</artifactId>
173                                 <version>2.10.4</version>
174                                 <configuration>
175                                         <failOnError>false</failOnError>
176                                         <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
177                                         <docletArtifact>
178                                                 <groupId>org.umlgraph</groupId>
179                                                 <artifactId>umlgraph</artifactId>
180                                                 <version>5.6</version>
181                                         </docletArtifact>
182                                         <additionalparam>-views</additionalparam>
183                                         <useStandardDocletOptions>true</useStandardDocletOptions>
184                                 </configuration>
185                         </plugin>
186                 </plugins>
187         </reporting>
188
189 </project>