Remove the apache commons-lang dependency in 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.9.3-SNAPSHOT</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                 <eelf.core.version>1.0.1-oss</eelf.core.version>
38                 <httpclient.version>4.5.13</httpclient.version>
39         <groovy.version>2.5.15</groovy.version>
40                 <springframework.version>4.3.24.RELEASE</springframework.version>
41         </properties>
42         <build>
43                 <plugins>
44                         <plugin>
45                                 <groupId>org.apache.maven.plugins</groupId>
46                                 <artifactId>maven-source-plugin</artifactId>
47                         </plugin>
48                         <plugin>
49                                 <!-- explicitly define maven-deploy-plugin after other to force exec
50                                         order -->
51                                 <groupId>org.apache.maven.plugins</groupId>
52                                 <artifactId>maven-deploy-plugin</artifactId>
53                         </plugin>
54                         <plugin>
55                                 <groupId>org.apache.maven.plugins</groupId>
56                                 <artifactId>maven-site-plugin</artifactId>
57                         </plugin>
58                 </plugins>
59         </build>
60
61         <dependencies>
62                 <dependency>
63                         <groupId>org.eclipse.persistence</groupId>
64                         <artifactId>eclipselink</artifactId>
65                 </dependency>
66                 <dependency>
67                         <groupId>com.google.guava</groupId>
68                         <artifactId>guava</artifactId>
69                 </dependency>
70                 <dependency>
71                         <groupId>org.codehaus.groovy</groupId>
72                         <artifactId>groovy</artifactId>
73             <version>${groovy.version}</version>
74                         <classifier>indy</classifier>
75                 </dependency>
76                 <dependency>
77                         <groupId>commons-io</groupId>
78                         <artifactId>commons-io</artifactId>
79                 </dependency>
80                 <dependency>
81                         <groupId>org.apache.commons</groupId>
82                         <artifactId>commons-lang3</artifactId>
83                 </dependency>
84                 <dependency>
85                         <groupId>org.onap.aai.aai-common</groupId>
86                         <artifactId>aai-rest</artifactId>
87                 </dependency>
88                 <dependency>
89                         <groupId>org.apache.tinkerpop</groupId>
90                         <artifactId>gremlin-core</artifactId>
91                 </dependency>
92                 <dependency>
93                         <groupId>com.jayway.jsonpath</groupId>
94                         <artifactId>json-path</artifactId>
95                 </dependency>
96                 <dependency>
97                         <groupId>javax.ws.rs</groupId>
98                         <artifactId>javax.ws.rs-api</artifactId>
99                 </dependency>
100                 <dependency>
101                         <groupId>org.springframework</groupId>
102                         <artifactId>spring-context</artifactId>
103                 </dependency>
104                 <dependency>
105                         <groupId>org.springframework</groupId>
106                         <artifactId>spring-web</artifactId>
107                 </dependency>
108                 <dependency>
109                         <groupId>org.springframework</groupId>
110                         <artifactId>spring-core</artifactId>
111                 </dependency>
112                 <dependency>
113                         <groupId>org.springframework</groupId>
114                         <artifactId>spring-expression</artifactId>
115                 </dependency>
116                 <dependency>
117                         <groupId>org.springframework</groupId>
118                         <artifactId>spring-webmvc</artifactId>
119                 </dependency>
120                 <dependency>
121                         <groupId>org.springframework.boot</groupId>
122                         <artifactId>spring-boot-starter-web</artifactId>
123                 </dependency>
124                 <dependency>
125                         <groupId>org.apache.httpcomponents</groupId>
126                         <artifactId>httpclient</artifactId>
127                 </dependency>
128                 <dependency>
129                         <groupId>org.springframework</groupId>
130                         <artifactId>spring-test</artifactId>
131                 </dependency>
132                 <dependency>
133                         <groupId>org.springframework.boot</groupId>
134                         <artifactId>spring-boot-test</artifactId>
135                         <scope>test</scope>
136                 </dependency>
137                 <dependency>
138                         <groupId>junit</groupId>
139                         <artifactId>junit</artifactId>
140                         <scope>test</scope>
141                 </dependency>
142                 <dependency>
143                         <groupId>org.mockito</groupId>
144                         <artifactId>mockito-all</artifactId>
145                         <scope>test</scope>
146                 </dependency>
147                 <dependency>
148                         <groupId>com.att.eelf</groupId>
149                         <artifactId>eelf-core</artifactId>
150                 </dependency>
151                 <dependency>
152                         <groupId>com.google.code.gson</groupId>
153                         <artifactId>gson</artifactId>
154                 </dependency>
155         </dependencies>
156         <!-- Plugins and repositories -->
157         <pluginRepositories>
158                 <pluginRepository>
159                         <id>central</id>
160                         <url>https://repo1.maven.org/maven2</url>
161                 </pluginRepository>
162                 <pluginRepository>
163                         <id>EvoSuite</id>
164                         <name>EvoSuite Repository</name>
165                         <url>https://www.evosuite.org/m2</url>
166                 </pluginRepository>
167         </pluginRepositories>
168
169         <reporting>
170                 <plugins>
171                         <plugin>
172                                 <groupId>org.apache.maven.plugins</groupId>
173                                 <artifactId>maven-javadoc-plugin</artifactId>
174                                 <version>2.10.4</version>
175                                 <configuration>
176                                         <failOnError>false</failOnError>
177                                         <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
178                                         <docletArtifact>
179                                                 <groupId>org.umlgraph</groupId>
180                                                 <artifactId>umlgraph</artifactId>
181                                                 <version>5.6</version>
182                                         </docletArtifact>
183                                         <additionalparam>-views</additionalparam>
184                                         <useStandardDocletOptions>true</useStandardDocletOptions>
185                                 </configuration>
186                         </plugin>
187                 </plugins>
188         </reporting>
189
190 </project>