Add multi-oxm using schemaIngest library
[aai/data-router.git] / pom.xml
1 <!--
2 ============LICENSE_START=======================================================
3 org.onap.aai
4 ================================================================================
5 Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6 Copyright © 2017-2018 Amdocs
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 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23    <modelVersion>4.0.0</modelVersion>
24
25    <parent>
26       <groupId>org.springframework.boot</groupId>
27       <artifactId>spring-boot-starter-parent</artifactId>
28       <version>1.5.12.RELEASE</version>
29       <relativePath />
30    </parent>
31    <groupId>org.onap.aai.data-router</groupId>
32    <artifactId>data-router</artifactId>
33    <version>1.3.0-SNAPSHOT</version>
34    <name>aai-data-router</name>
35
36    <properties>
37       <java.version>1.8</java.version>
38       <camel-spring-boot.version>2.20.0</camel-spring-boot.version>
39       <docker.location>${basedir}/target</docker.location>
40       <absoluteDistFilesRoot>/appl/${project.artifactId}</absoluteDistFilesRoot>
41       <!-- For NO Versioning, REMOVE the /${project.version} from the <distFilesRoot> 
42          property, below. PLEASE, NOTE: If your ${project.version} is a "-SNAPSHOT" 
43          version, THIS will be used as your directory structure. If you do NOT want 
44          this, simply remove the "-SNAPSHOT" from your <version> declaration at the 
45          top of pom.xml -->
46       <distFilesRoot>/appl/${project.artifactId}/${project.version}</distFilesRoot>
47       <!-- For SOA Cloud Installation -->
48       <installOwnerUser>aaiadmin</installOwnerUser>
49       <installOwnerGroup>aaiadmin</installOwnerGroup>
50       <ownerManagementGroup>com.att.csid.lab</ownerManagementGroup>
51
52       <!-- Port Selection. A value of 0 will allow for dynamic port selection. 
53          For local testing, you may choose to hardcode this value to something like 
54          8080 -->
55       <serverPort>0</serverPort>
56       <sslport>9502</sslport>
57
58       <testRouteOffer>workstation</testRouteOffer>
59       <testEnv>DEV</testEnv>
60       <checkstyle.config.location>google_checks.xml</checkstyle.config.location>
61       <nexusproxy>https://nexus.onap.org</nexusproxy>
62       <!-- Sonar Properties -->
63       <sonar.language>java</sonar.language>
64       <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
65       <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
66       <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
67       <sonar.jacoco.reportMissing.force.zero>false</sonar.jacoco.reportMissing.force.zero>
68       <sonar.projectVersion>${project.version}</sonar.projectVersion>
69       <logback.version>1.2.3</logback.version>
70       <version.com.google.guava>16.0.1</version.com.google.guava>
71    </properties>
72
73    <dependencies>
74     <dependency>
75             <groupId>ch.qos.logback</groupId>
76             <artifactId>logback-core</artifactId>
77             <version>${logback.version}</version>
78         </dependency>
79         <dependency>
80             <groupId>ch.qos.logback</groupId>
81             <artifactId>logback-classic</artifactId>
82             <version>${logback.version}</version>
83         </dependency>
84         <dependency>
85             <groupId>ch.qos.logback</groupId>
86             <artifactId>logback-access</artifactId>
87             <version>${logback.version}</version>
88         </dependency>
89       <dependency>
90          <groupId>org.apache.camel</groupId>
91          <artifactId>camel-spring-boot-starter</artifactId>
92       </dependency>
93       <dependency>
94          <groupId>org.apache.camel</groupId>
95          <artifactId>camel-core</artifactId>
96          <version>2.20.1</version>
97       </dependency>
98       <dependency>
99          <groupId>org.apache.camel</groupId>
100          <artifactId>camel-servlet-starter</artifactId>
101       </dependency>
102       <dependency>
103          <groupId>org.apache.camel</groupId>
104          <artifactId>camel-cxf</artifactId>
105          <version>2.20.1</version>
106       </dependency>
107       <!-- Spring dependencies -->
108       <dependency>
109          <groupId>org.springframework.boot</groupId>
110          <artifactId>spring-boot-starter-web</artifactId>
111
112       </dependency>
113       <dependency>
114          <groupId>org.springframework.boot</groupId>
115          <artifactId>spring-boot-starter</artifactId>
116       </dependency>
117       <dependency>
118          <groupId>org.springframework.boot</groupId>
119          <artifactId>spring-boot-starter-actuator</artifactId>
120       </dependency>
121       <dependency>
122          <groupId>javax.ws.rs</groupId>
123          <artifactId>javax.ws.rs-api</artifactId>
124          <version>2.0.1</version>
125       </dependency>
126       <dependency>
127          <groupId>org.powermock</groupId>
128          <artifactId>powermock-module-junit4</artifactId>
129          <version>1.6.2</version>
130          <scope>test</scope>
131       </dependency>
132
133       <dependency>
134          <groupId>org.powermock</groupId>
135          <artifactId>powermock-api-mockito</artifactId>
136          <version>1.6.2</version>
137          <scope>test</scope>
138       </dependency>
139
140       <dependency>
141          <groupId>org.powermock</groupId>
142          <artifactId>powermock-module-javaagent</artifactId>
143          <version>1.6.2</version>
144          <scope>test</scope>
145       </dependency>
146
147       <dependency>
148          <groupId>org.powermock</groupId>
149          <artifactId>powermock-module-junit4-rule-agent</artifactId>
150          <version>1.6.2</version>
151          <scope>test</scope>
152       </dependency>
153       <dependency>
154          <groupId>dom4j</groupId>
155          <artifactId>dom4j</artifactId>
156          <version>1.6.1</version>
157          <scope>provided</scope>
158       </dependency>
159
160       <dependency>
161          <groupId>com.att.aft</groupId>
162          <artifactId>dme2</artifactId>
163          <version>3.1.200</version>
164          <scope>provided</scope>
165       </dependency>
166       <dependency>
167          <groupId>org.onap.aai.aai-common</groupId>
168          <artifactId>aai-schema</artifactId>
169          <version>1.3.0-SNAPSHOT</version>
170       </dependency>
171       <dependency>
172          <groupId>org.onap.aai.aai-common</groupId>
173          <artifactId>aai-schema-ingest</artifactId>
174          <version>1.2.2</version>
175          <exclusions>
176              <exclusion>
177                  <groupId>com.google.guava</groupId>
178                  <artifactId>guava</artifactId>
179              </exclusion>
180          </exclusions>
181       </dependency>
182       <dependency>
183          <groupId>org.onap.aai.router-core</groupId>
184          <artifactId>router-core</artifactId>
185          <version>1.3.0-SNAPSHOT</version>
186       </dependency>
187
188       <dependency>
189          <groupId>org.json</groupId>
190          <artifactId>json</artifactId>
191       </dependency>
192
193       <dependency>
194          <groupId>com.google.code.gson</groupId>
195          <artifactId>gson</artifactId>
196          <version>2.6.2</version>
197       </dependency>
198
199       <dependency>
200          <groupId>org.eclipse.persistence</groupId>
201          <artifactId>eclipselink</artifactId>
202          <version>2.6.2</version>
203       </dependency>
204
205       <dependency>
206          <groupId>org.onap.aai.logging-service</groupId>
207          <artifactId>common-logging</artifactId>
208          <version>1.2.2</version>
209       </dependency>
210
211       <dependency>
212          <groupId>org.onap.aai.logging-service</groupId>
213          <artifactId>logging-api</artifactId>
214          <version>1.1.0</version>
215       </dependency>
216
217       <dependency>
218          <groupId>org.onap.aai</groupId>
219          <artifactId>rest-client</artifactId>
220          <version>1.1.0</version>
221       </dependency>
222
223           <dependency>
224         <groupId>com.google.guava</groupId>
225         <artifactId>guava</artifactId>
226         <version>${version.com.google.guava}</version>
227       </dependency>
228
229    </dependencies>
230
231    <build>
232       <finalName>${project.artifactId}</finalName>
233       <plugins>
234          <!-- Checkstyle plugin - used to report on compliance with -->
235          <!-- the Google style guide. -->
236          <plugin>
237             <groupId>org.apache.maven.plugins</groupId>
238             <artifactId>maven-site-plugin</artifactId>
239             <version>3.3</version>
240             <configuration>
241                <reportPlugins>
242                   <plugin>
243                      <groupId>org.apache.maven.plugins</groupId>
244                      <artifactId>maven-checkstyle-plugin</artifactId>
245                      <version>2.17</version>
246                      <reportSets>
247                         <reportSet>
248                            <reports>
249                               <report>checkstyle</report>
250                            </reports>
251                         </reportSet>
252                      </reportSets>
253                   </plugin>
254                </reportPlugins>
255             </configuration>
256          </plugin>
257          <plugin>
258             <groupId>org.springframework.boot</groupId>
259             <artifactId>spring-boot-maven-plugin</artifactId>
260          </plugin>
261          <plugin>
262             <groupId>org.apache.maven.plugins</groupId>
263             <artifactId>maven-resources-plugin</artifactId>
264             <version>2.7</version>
265             <executions>
266                <execution>
267                   <id>copy-docker-file</id>
268                   <phase>package</phase>
269                   <goals>
270                      <goal>copy-resources</goal>
271                   </goals>
272                   <configuration>
273                      <outputDirectory>target</outputDirectory>
274                      <overwrite>true</overwrite>
275                      <resources>
276                         <resource>
277                            <directory>${basedir}/src/main/docker</directory>
278                            <filtering>true</filtering>
279                            <includes>
280                               <include>**/*</include>
281                            </includes>
282                         </resource>
283                         <resource>
284                            <directory>${basedir}</directory>
285                            <filtering>true</filtering>
286                            <includes>
287                               <include>bundleconfig-local/**</include>
288                            </includes>
289                         </resource>
290                         <resource>
291                            <directory>${basedir}/src/main/bin/</directory>
292                            <filtering>true</filtering>
293                            <includes>
294                               <include>**/*</include>
295                            </includes>
296                         </resource>
297                         <resource>
298                            <directory>${basedir}/config</directory>
299                            <filtering>true</filtering>
300                            <includes>
301                               <include>schema/**</include>
302                            </includes>
303                         </resource>
304                      </resources>
305                   </configuration>
306                </execution>
307             </executions>
308          </plugin>
309          <plugin>
310             <groupId>org.apache.maven.plugins</groupId>
311             <artifactId>maven-dependency-plugin</artifactId>
312             <executions>
313               <execution>
314                 <id>unpack</id>
315                 <phase>prepare-package</phase>
316                 <goals>
317                   <goal>unpack</goal>
318                 </goals>
319                 <configuration>
320                   <artifactItems>
321                     <artifactItem>
322                       <groupId>org.onap.aai.aai-common</groupId>
323                       <artifactId>aai-schema</artifactId>
324                       <version>1.2.2</version>
325                       <type>jar</type>
326                       <includes>oxm/</includes>
327                       <outputDirectory>${project.build.directory}/bundleconfig-local/etc</outputDirectory>
328                     </artifactItem>
329                   </artifactItems>
330                   </configuration>
331                </execution>
332             </executions>
333          </plugin>
334          <plugin>
335             <groupId>com.spotify</groupId>
336             <artifactId>docker-maven-plugin</artifactId>
337             <version>0.4.11</version>
338             <dependencies>
339                 <dependency>
340                     <groupId>com.github.jnr</groupId>
341                     <artifactId>jnr-unixsocket</artifactId>
342                     <version>0.13</version>
343                 </dependency>
344             </dependencies>
345             <configuration>
346                <verbose>true</verbose>
347                <serverId>docker-hub</serverId>
348                <imageName>${docker.push.registry}/onap/${project.artifactId}</imageName>
349                <dockerDirectory>${docker.location}</dockerDirectory>
350                <imageTags>
351                   <imageTag>latest</imageTag>
352                </imageTags>
353                <forceTags>true</forceTags>
354             </configuration>
355          </plugin>
356          <!-- license plugin -->
357          <!-- Uncomment this to add a license header to every source file 
358         <plugin>
359                 <groupId>com.mycila</groupId>
360                 <artifactId>license-maven-plugin</artifactId>
361                 <version>3.0</version>
362                 <configuration>
363                         <header>License.txt</header>
364                         <includes>
365                                 <include>src/main/java/**</include>
366                                 <include>src/test/java/**</include>
367                         </includes>
368                 </configuration>
369                 <executions>
370                         <execution>
371                                 <goals>
372                                         <goal>format</goal>
373                                 </goals>
374                                 <phase>process-sources</phase>
375                         </execution>
376                 </executions>
377         </plugin> -->
378          <plugin>
379             <groupId>org.sonatype.plugins</groupId>
380             <artifactId>nexus-staging-maven-plugin</artifactId>
381             <version>1.6.7</version>
382             <extensions>true</extensions>
383             <configuration>
384                <nexusUrl>${nexusproxy}</nexusUrl>
385                <stagingProfileId>176c31dfe190a</stagingProfileId>
386                <serverId>ecomp-staging</serverId>
387             </configuration>
388          </plugin>
389          <plugin>
390             <groupId>org.apache.maven.plugins</groupId>
391             <artifactId>maven-deploy-plugin</artifactId>
392             <configuration>
393                <skip>true</skip>
394             </configuration>
395          </plugin>
396          <plugin>
397             <groupId>org.codehaus.mojo</groupId>
398             <artifactId>sonar-maven-plugin</artifactId>
399             <version>3.2</version>
400          </plugin>
401          <plugin>
402             <groupId>org.jacoco</groupId>
403             <artifactId>jacoco-maven-plugin</artifactId>
404             <version>0.7.7.201606060606</version>
405             <configuration>
406                <dumpOnExit>true</dumpOnExit>
407             </configuration>
408             <executions>
409                <execution>
410                   <id>jacoco-initialize-unit-tests</id>
411                   <goals>
412                      <goal>prepare-agent</goal>
413                   </goals>
414                   <configuration>
415                      <destFile>${project.build.directory}/coverage-reports/jacoco.exec
416                      </destFile>
417                   </configuration>
418                </execution>
419             </executions>
420          </plugin>
421
422       </plugins>
423    </build>
424
425
426    <dependencyManagement>
427       <dependencies>
428          <dependency>
429             <groupId>org.apache.camel</groupId>
430             <artifactId>camel-spring-boot-dependencies</artifactId>
431             <version>${camel-spring-boot.version}</version>
432             <type>pom</type>
433             <scope>import</scope>
434          </dependency>
435          <dependency>
436             <groupId>org.apache.httpcomponents</groupId>
437             <artifactId>httpclient</artifactId>
438             <version>4.5.5</version>
439          </dependency>
440          <dependency>
441             <groupId>org.apache.httpcomponents</groupId>
442             <artifactId>httpcore</artifactId>
443             <version>4.4.1</version>
444          </dependency>
445          <dependency>
446             <groupId>org.json</groupId>
447             <artifactId>json</artifactId>
448             <version>20131018</version>
449          </dependency>
450       </dependencies>
451    </dependencyManagement>
452    <distributionManagement>
453       <repository>
454          <id>ecomp-releases</id>
455          <name>ECOMP Release Repository</name>
456          <url>${nexusproxy}/content/repositories/releases/</url>
457       </repository>
458       <snapshotRepository>
459          <id>ecomp-snapshots</id>
460          <name>ECOMP Snapshot Repository</name>
461          <url>${nexusproxy}/content/repositories/snapshots/</url>
462       </snapshotRepository>
463    </distributionManagement>
464 </project>