Fix the spring core and netty handler issue
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23   <modelVersion>4.0.0</modelVersion>
24   <parent>
25     <groupId>org.onap.aai.aai-common</groupId>
26     <artifactId>aai-common</artifactId>
27     <version>1.2.2-SNAPSHOT</version>
28   </parent>
29   <artifactId>aai-schema-ingest</artifactId>
30   <name>aai-schema-ingest</name>
31   <version>1.2.2-SNAPSHOT</version>
32   <packaging>jar</packaging>
33
34   <dependencies>
35         <dependency>
36                 <groupId>org.eclipse.persistence</groupId>
37                 <artifactId>eclipselink</artifactId>
38                 <version>2.6.2</version>
39         </dependency>
40         <dependency>
41                 <groupId>com.google.guava</groupId>
42                 <artifactId>guava</artifactId>
43                 <version>16.0</version>
44         </dependency>
45         <dependency>
46                 <groupId>org.apache.tinkerpop</groupId>
47                 <artifactId>gremlin-core</artifactId>
48                 <version>3.0.1-incubating</version>
49         </dependency>
50         <dependency>
51             <groupId>com.jayway.jsonpath</groupId>
52             <artifactId>json-path</artifactId>
53             <version>2.2.0</version>
54         </dependency>
55         <dependency>
56             <groupId>org.springframework</groupId>
57             <artifactId>spring-context</artifactId>
58             <version>4.3.16.RELEASE</version>
59         </dependency>
60         <dependency>
61             <groupId>org.springframework</groupId>
62             <artifactId>spring-test</artifactId>
63             <version>4.3.16.RELEASE</version>
64         </dependency>
65         <dependency>
66             <groupId>org.springframework.boot</groupId>
67             <artifactId>spring-boot-test</artifactId>
68             <version>1.5.1.RELEASE</version>
69             <scope>test</scope>
70         </dependency>
71           <dependency>
72                   <groupId>com.fasterxml.jackson.core</groupId>
73                   <artifactId>jackson-core</artifactId>
74                   <version>2.8.11</version>
75           </dependency>
76           <dependency>
77                   <groupId>com.fasterxml.jackson.core</groupId>
78                   <artifactId>jackson-databind</artifactId>
79                   <version>2.8.11</version>
80           </dependency>
81         <dependency>
82                 <groupId>junit</groupId>
83                 <artifactId>junit</artifactId>
84                 <version>4.12</version>
85                 <scope>test</scope>
86         </dependency>
87         <dependency>
88                 <groupId>org.mockito</groupId>
89                 <artifactId>mockito-all</artifactId>
90                 <version>1.10.19</version>
91                 <scope>test</scope>
92         </dependency>
93   </dependencies>
94     <build>
95                 <plugins>
96                         <plugin>
97                                 <!-- explicitly define maven-deploy-plugin after other to force exec order -->
98                                 <groupId>org.apache.maven.plugins</groupId>
99                                 <artifactId>maven-deploy-plugin</artifactId>
100                         </plugin>
101                         <plugin>
102                                 <groupId>org.sonatype.plugins</groupId>
103                                 <artifactId>nexus-staging-maven-plugin</artifactId>
104                         </plugin>
105                         <plugin>
106                                 <groupId>org.apache.maven.plugins</groupId>
107                                 <artifactId>maven-site-plugin</artifactId>
108                         </plugin>
109                 </plugins>
110         </build>
111         <!-- Plugins and repositories -->
112         <pluginRepositories>
113                 <pluginRepository>
114                         <id>central</id>
115                         <url>http://repo1.maven.org/maven2</url>
116                 </pluginRepository>
117                 <pluginRepository>
118                         <id>EvoSuite</id>
119                         <name>EvoSuite Repository</name>
120                         <url>http://www.evosuite.org/m2</url>
121                 </pluginRepository>
122         </pluginRepositories>
123
124         <reporting>
125                 <plugins>
126                         <plugin>
127                                 <groupId>org.apache.maven.plugins</groupId>
128                                 <artifactId>maven-javadoc-plugin</artifactId>
129                                 <version>2.10.4</version>
130                                 <configuration>
131                                         <failOnError>false</failOnError>
132                                         <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
133                                         <docletArtifact>
134                                                 <groupId>org.umlgraph</groupId>
135                                                 <artifactId>umlgraph</artifactId>
136                                                 <version>5.6</version>
137                                         </docletArtifact>
138                                         <additionalparam>-views</additionalparam>
139                                         <useStandardDocletOptions>true</useStandardDocletOptions>
140                                 </configuration>
141                         </plugin>
142                 </plugins>
143         </reporting>
144
145 </project>