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