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