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.9.6</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                 <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
77                 <dependency>
78                         <groupId>commons-io</groupId>
79                         <artifactId>commons-io</artifactId>
80                 </dependency>
81                 <dependency>
82                         <groupId>org.onap.aai.aai-common</groupId>
83                         <artifactId>aai-rest</artifactId>
84                 </dependency>
85                 <dependency>
86                         <groupId>org.apache.tinkerpop</groupId>
87                         <artifactId>gremlin-core</artifactId>
88                 </dependency>
89                 <dependency>
90                         <groupId>com.jayway.jsonpath</groupId>
91                         <artifactId>json-path</artifactId>
92                 </dependency>
93                 <dependency>
94                         <groupId>javax.ws.rs</groupId>
95                         <artifactId>javax.ws.rs-api</artifactId>
96                 </dependency>
97                 <dependency>
98                         <groupId>org.springframework</groupId>
99                         <artifactId>spring-context</artifactId>
100                 </dependency>
101                 <dependency>
102                         <groupId>org.springframework</groupId>
103                         <artifactId>spring-web</artifactId>
104                 </dependency>
105                 <dependency>
106                         <groupId>org.springframework</groupId>
107                         <artifactId>spring-core</artifactId>
108                 </dependency>
109                 <dependency>
110                         <groupId>org.springframework</groupId>
111                         <artifactId>spring-expression</artifactId>
112                 </dependency>
113                 <dependency>
114                         <groupId>org.springframework</groupId>
115                         <artifactId>spring-webmvc</artifactId>
116                 </dependency>
117                 <dependency>
118                         <groupId>org.springframework.boot</groupId>
119                         <artifactId>spring-boot-starter-web</artifactId>
120                 </dependency>
121                 <dependency>
122                         <groupId>org.apache.httpcomponents</groupId>
123                         <artifactId>httpclient</artifactId>
124                 </dependency>
125                 <dependency>
126                         <groupId>org.springframework</groupId>
127                         <artifactId>spring-test</artifactId>
128                 </dependency>
129                 <dependency>
130                         <groupId>org.springframework.boot</groupId>
131                         <artifactId>spring-boot-test</artifactId>
132                         <scope>test</scope>
133                 </dependency>
134                 <dependency>
135                         <groupId>junit</groupId>
136                         <artifactId>junit</artifactId>
137                         <scope>test</scope>
138                 </dependency>
139                 <dependency>
140                         <groupId>org.mockito</groupId>
141                         <artifactId>mockito-all</artifactId>
142                         <scope>test</scope>
143                 </dependency>
144                 <dependency>
145                         <groupId>com.att.eelf</groupId>
146                         <artifactId>eelf-core</artifactId>
147                 </dependency>
148                 <dependency>
149                         <groupId>com.google.code.gson</groupId>
150                         <artifactId>gson</artifactId>
151                 </dependency>
152         </dependencies>
153         <!-- Plugins and repositories -->
154         <pluginRepositories>
155                 <pluginRepository>
156                         <id>central</id>
157                         <url>http://repo1.maven.org/maven2</url>
158                 </pluginRepository>
159                 <pluginRepository>
160                         <id>EvoSuite</id>
161                         <name>EvoSuite Repository</name>
162                         <url>http://www.evosuite.org/m2</url>
163                 </pluginRepository>
164         </pluginRepositories>
165
166         <reporting>
167                 <plugins>
168                         <plugin>
169                                 <groupId>org.apache.maven.plugins</groupId>
170                                 <artifactId>maven-javadoc-plugin</artifactId>
171                                 <version>2.10.4</version>
172                                 <configuration>
173                                         <failOnError>false</failOnError>
174                                         <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
175                                         <docletArtifact>
176                                                 <groupId>org.umlgraph</groupId>
177                                                 <artifactId>umlgraph</artifactId>
178                                                 <version>5.6</version>
179                                         </docletArtifact>
180                                         <additionalparam>-views</additionalparam>
181                                         <useStandardDocletOptions>true</useStandardDocletOptions>
182                                 </configuration>
183                         </plugin>
184                 </plugins>
185         </reporting>
186
187 </project>