Update to spring-boot 1.5.21
[aai/aai-common.git] / aai-schema-ingest / pom.xml
1 <!--
2
3     ============LICENSE_START=======================================================
4     org.onap.aai
5     ================================================================================
6     Copyright © 2017-2018 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24     <modelVersion>4.0.0</modelVersion>
25     <parent>
26         <groupId>org.onap.aai.aai-common</groupId>
27         <artifactId>aai-common</artifactId>
28         <version>1.5.2-SNAPSHOT</version>
29     </parent>
30     <artifactId>aai-schema-ingest</artifactId>
31     <name>aai-schema-ingest</name>
32     <version>1.5.2-SNAPSHOT</version>
33     <packaging>jar</packaging>
34
35     <properties>
36         <eelf.core.version>1.0.1-oss</eelf.core.version>
37         <httpclient.version>4.5.5</httpclient.version>
38         <springframework.version>4.3.24.RELEASE</springframework.version>
39     </properties>
40     <build>
41         <plugins>
42             <plugin>
43                 <groupId>org.apache.maven.plugins</groupId>
44                 <artifactId>maven-source-plugin</artifactId>
45             </plugin>
46             <plugin>
47                 <!-- explicitly define maven-deploy-plugin after other to force exec order -->
48                 <groupId>org.apache.maven.plugins</groupId>
49                 <artifactId>maven-deploy-plugin</artifactId>
50             </plugin>
51             <plugin>
52                 <groupId>org.apache.maven.plugins</groupId>
53                 <artifactId>maven-site-plugin</artifactId>
54             </plugin>
55         </plugins>
56     </build>
57
58     <dependencies>
59         <dependency>
60             <groupId>org.eclipse.persistence</groupId>
61             <artifactId>eclipselink</artifactId>
62             <version>2.6.2</version>
63         </dependency>
64         <dependency>
65             <groupId>com.google.guava</groupId>
66             <artifactId>guava</artifactId>
67             <version>19.0</version>
68         </dependency>
69         <dependency>
70           <groupId>org.codehaus.groovy</groupId>
71           <artifactId>groovy</artifactId>
72           <version>2.4.15</version>
73           <classifier>indy</classifier>
74         </dependency>
75         <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
76         <dependency>
77             <groupId>commons-io</groupId>
78             <artifactId>commons-io</artifactId>
79             <version>2.6</version>
80         </dependency>
81         <dependency>
82             <groupId>org.onap.aai.aai-common</groupId>
83             <artifactId>aai-rest</artifactId>
84             <version>${project.version}</version>
85         </dependency>
86         <dependency>
87             <groupId>org.apache.tinkerpop</groupId>
88             <artifactId>gremlin-core</artifactId>
89             <version>3.2.2</version>
90         </dependency>
91         <dependency>
92             <groupId>com.jayway.jsonpath</groupId>
93             <artifactId>json-path</artifactId>
94             <version>2.2.0</version>
95         </dependency>
96         <dependency>
97             <groupId>javax.ws.rs</groupId>
98             <artifactId>javax.ws.rs-api</artifactId>
99             <version>2.0.1</version>
100         </dependency>
101         <dependency>
102             <groupId>org.springframework</groupId>
103             <artifactId>spring-context</artifactId>
104             <version>${springframework.version}</version>
105         </dependency>
106         <dependency>
107             <groupId>org.springframework</groupId>
108             <artifactId>spring-web</artifactId>
109             <version>${springframework.version}</version>
110         </dependency>
111         <dependency>
112             <groupId>org.springframework</groupId>
113             <artifactId>spring-core</artifactId>
114             <version>${springframework.version}</version>
115         </dependency>
116         <dependency>
117             <groupId>org.springframework</groupId>
118             <artifactId>spring-expression</artifactId>
119             <version>${springframework.version}</version>
120         </dependency>
121         <dependency>
122             <groupId>org.springframework</groupId>
123             <artifactId>spring-webmvc</artifactId>
124             <version>${springframework.version}</version>
125         </dependency>
126         <dependency>
127             <groupId>org.springframework.boot</groupId>
128             <artifactId>spring-boot-starter-web</artifactId>
129             <version>1.5.21.RELEASE</version>
130         </dependency>
131         <dependency>
132             <groupId>org.apache.httpcomponents</groupId>
133             <artifactId>httpclient</artifactId>
134             <version>${httpclient.version}</version>
135         </dependency>
136         <dependency>
137             <groupId>org.springframework</groupId>
138             <artifactId>spring-test</artifactId>
139             <version>${springframework.version}</version>
140         </dependency>
141         <dependency>
142             <groupId>org.springframework.boot</groupId>
143             <artifactId>spring-boot-test</artifactId>
144             <version>1.5.21.RELEASE</version>
145             <scope>test</scope>
146         </dependency>
147         <dependency>
148             <groupId>junit</groupId>
149             <artifactId>junit</artifactId>
150             <version>4.12</version>
151             <scope>test</scope>
152         </dependency>
153         <dependency>
154             <groupId>org.mockito</groupId>
155             <artifactId>mockito-all</artifactId>
156             <version>1.10.19</version>
157             <scope>test</scope>
158         </dependency>
159         <dependency>
160             <groupId>com.att.eelf</groupId>
161             <artifactId>eelf-core</artifactId>
162             <version>${eelf.core.version}</version>
163         </dependency>
164         <dependency>
165             <groupId>com.google.code.gson</groupId>
166             <artifactId>gson</artifactId>
167             <version>2.8.5</version>
168         </dependency>
169     </dependencies>
170     <!-- Plugins and repositories -->
171     <pluginRepositories>
172         <pluginRepository>
173             <id>central</id>
174             <url>http://repo1.maven.org/maven2</url>
175         </pluginRepository>
176         <pluginRepository>
177             <id>EvoSuite</id>
178             <name>EvoSuite Repository</name>
179             <url>http://www.evosuite.org/m2</url>
180         </pluginRepository>
181     </pluginRepositories>
182
183     <reporting>
184         <plugins>
185             <plugin>
186                 <groupId>org.apache.maven.plugins</groupId>
187                 <artifactId>maven-javadoc-plugin</artifactId>
188                 <version>2.10.4</version>
189                 <configuration>
190                     <failOnError>false</failOnError>
191                     <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
192                     <docletArtifact>
193                         <groupId>org.umlgraph</groupId>
194                         <artifactId>umlgraph</artifactId>
195                         <version>5.6</version>
196                     </docletArtifact>
197                     <additionalparam>-views</additionalparam>
198                     <useStandardDocletOptions>true</useStandardDocletOptions>
199                 </configuration>
200             </plugin>
201         </plugins>
202     </reporting>
203
204 </project>