Migrate ccsdk/apps to ccsdk/cds
[ccsdk/cds.git] / ms / cds-sdc-listener / application / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (C) 2019 Bell Canada. All rights reserved.
4   ~
5   ~ NOTICE:  All the intellectual and technical concepts contained herein are
6   ~ proprietary to Bell Canada and are protected by trade secret or copyright law.
7   ~ Unauthorized copying of this file, via any medium is strictly prohibited.
8   -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10
11   <parent>
12     <groupId>org.onap.ccsdk.parent</groupId>
13     <artifactId>spring-boot-1-starter-parent</artifactId>
14     <version>1.2.2-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.onap.ccsdk.cds</groupId>
20   <artifactId>cds-sdc-listener-application</artifactId>
21   <name>CDS-SDC Listener Application </name>
22
23   <dependencies>
24     <!-- Spring boot -->
25       <dependency>
26         <groupId>org.springframework.boot</groupId>
27         <artifactId>spring-boot-starter-web</artifactId>
28       </dependency>
29       <dependency>
30         <groupId>org.springframework.boot</groupId>
31         <artifactId>spring-boot-starter-test</artifactId>
32         <scope>test</scope>
33       </dependency>
34     <dependency>
35       <groupId>org.springframework.boot</groupId>
36       <artifactId>spring-boot-devtools</artifactId>
37       <optional>true</optional>
38     </dependency>
39
40     <!-- SDC Distribution client dependency -->
41     <dependency>
42       <groupId>org.onap.sdc.sdc-distribution-client</groupId>
43       <artifactId>sdc-distribution-client</artifactId>
44       <version>1.3.0</version>
45     </dependency>
46
47     <dependency>
48       <groupId>org.jmockit</groupId>
49       <artifactId>jmockit</artifactId>
50       <version>1.19</version>
51       <scope>test</scope>
52     </dependency>
53
54   </dependencies>
55
56   <build>
57     <plugins>
58       <plugin>
59         <groupId>org.springframework.boot</groupId>
60         <artifactId>spring-boot-maven-plugin</artifactId>
61         <executions>
62           <execution>
63             <id>repackage</id>
64             <goals>
65               <goal>repackage</goal>
66             </goals>
67           </execution>
68         </executions>
69       </plugin>
70     </plugins>
71   </build>
72
73 </project>