Merge "Copy oparent sonar setup"
[aai/aai-common.git] / aai-schema-ingest / pom.xml
1 <!-- ============LICENSE_START======================================================= 
2         org.onap.aai ================================================================================ 
3         Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved. ================================================================================ 
4         Licensed under the Apache License, Version 2.0 (the "License"); you may not 
5         use this file except in compliance with the License. You may obtain a copy 
6         of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required 
7         by applicable law or agreed to in writing, software distributed under the 
8         License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS 
9         OF ANY KIND, either express or implied. See the License for the specific 
10         language governing permissions and limitations under the License. ============LICENSE_END========================================================= -->
11 <project xmlns="http://maven.apache.org/POM/4.0.0"
12         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
14         <modelVersion>4.0.0</modelVersion>
15         <parent>
16                 <groupId>org.onap.aai.aai-common</groupId>
17                 <artifactId>aai-parent</artifactId>
18                 <version>1.6.5-SNAPSHOT</version>
19                 <relativePath>../aai-parent/pom.xml</relativePath>
20         </parent>
21         <artifactId>aai-schema-ingest</artifactId>
22         <name>aai-schema-ingest</name>
23         <packaging>jar</packaging>
24
25         <properties>
26                 <eelf.core.version>1.0.1-oss</eelf.core.version>
27                 <httpclient.version>4.5.5</httpclient.version>
28                 <springframework.version>4.3.24.RELEASE</springframework.version>
29         </properties>
30         <build>
31                 <plugins>
32                         <plugin>
33                                 <groupId>org.apache.maven.plugins</groupId>
34                                 <artifactId>maven-source-plugin</artifactId>
35                         </plugin>
36                         <plugin>
37                                 <!-- explicitly define maven-deploy-plugin after other to force exec 
38                                         order -->
39                                 <groupId>org.apache.maven.plugins</groupId>
40                                 <artifactId>maven-deploy-plugin</artifactId>
41                         </plugin>
42                         <plugin>
43                                 <groupId>org.apache.maven.plugins</groupId>
44                                 <artifactId>maven-site-plugin</artifactId>
45                         </plugin>
46                 </plugins>
47         </build>
48
49         <dependencies>
50                 <dependency>
51                         <groupId>org.eclipse.persistence</groupId>
52                         <artifactId>eclipselink</artifactId>
53                 </dependency>
54                 <dependency>
55                         <groupId>com.google.guava</groupId>
56                         <artifactId>guava</artifactId>
57                 </dependency>
58                 <dependency>
59                         <groupId>org.codehaus.groovy</groupId>
60                         <artifactId>groovy</artifactId>
61                         <classifier>indy</classifier>
62                 </dependency>
63                 <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
64                 <dependency>
65                         <groupId>commons-io</groupId>
66                         <artifactId>commons-io</artifactId>
67                 </dependency>
68                 <dependency>
69                         <groupId>org.onap.aai.aai-common</groupId>
70                         <artifactId>aai-rest</artifactId>
71                 </dependency>
72                 <dependency>
73                         <groupId>org.apache.tinkerpop</groupId>
74                         <artifactId>gremlin-core</artifactId>
75                 </dependency>
76                 <dependency>
77                         <groupId>com.jayway.jsonpath</groupId>
78                         <artifactId>json-path</artifactId>
79                 </dependency>
80                 <dependency>
81                         <groupId>javax.ws.rs</groupId>
82                         <artifactId>javax.ws.rs-api</artifactId>
83                 </dependency>
84                 <dependency>
85                         <groupId>org.springframework</groupId>
86                         <artifactId>spring-context</artifactId>
87                 </dependency>
88                 <dependency>
89                         <groupId>org.springframework</groupId>
90                         <artifactId>spring-web</artifactId>
91                 </dependency>
92                 <dependency>
93                         <groupId>org.springframework</groupId>
94                         <artifactId>spring-core</artifactId>
95                 </dependency>
96                 <dependency>
97                         <groupId>org.springframework</groupId>
98                         <artifactId>spring-expression</artifactId>
99                 </dependency>
100                 <dependency>
101                         <groupId>org.springframework</groupId>
102                         <artifactId>spring-webmvc</artifactId>
103                 </dependency>
104                 <dependency>
105                         <groupId>org.springframework.boot</groupId>
106                         <artifactId>spring-boot-starter-web</artifactId>
107                 </dependency>
108                 <dependency>
109                         <groupId>org.apache.httpcomponents</groupId>
110                         <artifactId>httpclient</artifactId>
111                 </dependency>
112                 <dependency>
113                         <groupId>org.springframework</groupId>
114                         <artifactId>spring-test</artifactId>
115                 </dependency>
116                 <dependency>
117                         <groupId>org.springframework.boot</groupId>
118                         <artifactId>spring-boot-test</artifactId>
119                         <scope>test</scope>
120                 </dependency>
121                 <dependency>
122                         <groupId>junit</groupId>
123                         <artifactId>junit</artifactId>
124                         <scope>test</scope>
125                 </dependency>
126                 <dependency>
127                         <groupId>org.mockito</groupId>
128                         <artifactId>mockito-all</artifactId>
129                         <scope>test</scope>
130                 </dependency>
131                 <dependency>
132                         <groupId>com.att.eelf</groupId>
133                         <artifactId>eelf-core</artifactId>
134                 </dependency>
135                 <dependency>
136                         <groupId>com.google.code.gson</groupId>
137                         <artifactId>gson</artifactId>
138                 </dependency>
139         </dependencies>
140         <!-- Plugins and repositories -->
141         <pluginRepositories>
142                 <pluginRepository>
143                         <id>central</id>
144                         <url>http://repo1.maven.org/maven2</url>
145                 </pluginRepository>
146                 <pluginRepository>
147                         <id>EvoSuite</id>
148                         <name>EvoSuite Repository</name>
149                         <url>http://www.evosuite.org/m2</url>
150                 </pluginRepository>
151         </pluginRepositories>
152
153         <reporting>
154                 <plugins>
155                         <plugin>
156                                 <groupId>org.apache.maven.plugins</groupId>
157                                 <artifactId>maven-javadoc-plugin</artifactId>
158                                 <version>2.10.4</version>
159                                 <configuration>
160                                         <failOnError>false</failOnError>
161                                         <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
162                                         <docletArtifact>
163                                                 <groupId>org.umlgraph</groupId>
164                                                 <artifactId>umlgraph</artifactId>
165                                                 <version>5.6</version>
166                                         </docletArtifact>
167                                         <additionalparam>-views</additionalparam>
168                                         <useStandardDocletOptions>true</useStandardDocletOptions>
169                                 </configuration>
170                         </plugin>
171                 </plugins>
172         </reporting>
173
174 </project>