blob: f2f643ac2328156b4513123375e8f094bf0dad21 [file] [log] [blame]
Rishi Chailb220d742020-09-16 15:23:53 +01001<project xmlns="http://maven.apache.org/POM/4.0.0"
niamhcoref7ba3592020-10-19 12:48:06 +01002 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
Rishi Chailb220d742020-09-16 15:23:53 +01004 <modelVersion>4.0.0</modelVersion>
Rishi Chailb220d742020-09-16 15:23:53 +01005 <parent>
6 <groupId>org.onap.cps</groupId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +01007 <artifactId>cps-parent</artifactId>
Rishi Chailb220d742020-09-16 15:23:53 +01008 <version>0.0.1-SNAPSHOT</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +01009 <relativePath>../cps-parent/pom.xml</relativePath>
Rishi Chailb220d742020-09-16 15:23:53 +010010 </parent>
11
Claudio David Gasparini70c17022020-10-26 10:12:10 +010012 <artifactId>cps-rest</artifactId>
13
Rishi Chailb220d742020-09-16 15:23:53 +010014 <dependencies>
Rishi Chailb220d742020-09-16 15:23:53 +010015 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010016 <groupId>${project.groupId}</groupId>
Rishi Chailb220d742020-09-16 15:23:53 +010017 <artifactId>cps-service</artifactId>
Rishi Chailb220d742020-09-16 15:23:53 +010018 </dependency>
Rishi Chailb220d742020-09-16 15:23:53 +010019 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010020 <groupId>${project.groupId}</groupId>
Rishi Chailb220d742020-09-16 15:23:53 +010021 <artifactId>cps-ri</artifactId>
Rishi Chailb220d742020-09-16 15:23:53 +010022 </dependency>
Rishi Chailb220d742020-09-16 15:23:53 +010023 <dependency>
24 <groupId>org.springframework.boot</groupId>
Rishi Chail2371fe72020-10-30 12:58:54 +000025 <artifactId>spring-boot-starter-web</artifactId>
Rishi Chailb220d742020-09-16 15:23:53 +010026 <exclusions>
27 <exclusion>
28 <groupId>org.springframework.boot</groupId>
29 <artifactId>spring-boot-starter-tomcat</artifactId>
30 </exclusion>
31 </exclusions>
32 </dependency>
Rishi Chailb220d742020-09-16 15:23:53 +010033 <dependency>
34 <groupId>org.springframework.boot</groupId>
35 <artifactId>spring-boot-starter-jetty</artifactId>
36 </dependency>
Rishi Chail14f3af12020-10-02 09:33:35 +010037 <dependency>
Ruslan Kashapovf4d1c982020-10-29 11:39:31 +020038 <groupId>org.springframework.boot</groupId>
39 <artifactId>spring-boot-starter-actuator</artifactId>
40 </dependency>
41 <dependency>
Rishi Chail14f3af12020-10-02 09:33:35 +010042 <groupId>io.swagger.core.v3</groupId>
43 <artifactId>swagger-annotations</artifactId>
Rishi Chail14f3af12020-10-02 09:33:35 +010044 </dependency>
Rishi Chail14f3af12020-10-02 09:33:35 +010045 <dependency>
puthuparambil.aditya47598112020-11-02 11:31:39 +000046 <groupId>io.springfox</groupId>
puthuparambil.aditya52cff682020-11-05 11:34:41 +000047 <artifactId>springfox-boot-starter</artifactId>
puthuparambil.aditya47598112020-11-02 11:31:39 +000048 </dependency>
Claudio David Gasparini1bd1c6c2020-11-08 22:31:43 +010049 <dependency>
50 <groupId>org.apache.commons</groupId>
51 <artifactId>commons-lang3</artifactId>
52 </dependency>
puthuparambil.aditya47598112020-11-02 11:31:39 +000053 <dependency>
Rishi.Chail48830f12020-11-09 03:28:44 +000054 <groupId>org.modelmapper</groupId>
55 <artifactId>modelmapper</artifactId>
56 </dependency>
Ruslan Kashapovf338b922020-10-28 16:53:58 +020057 <!-- T E S T D E P E N D E N C I E S -->
58 <dependency>
59 <groupId>org.codehaus.groovy</groupId>
60 <artifactId>groovy</artifactId>
61 <scope>test</scope>
62 </dependency>
63 <dependency>
64 <groupId>org.spockframework</groupId>
65 <artifactId>spock-core</artifactId>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
puthuparambil.aditya008c0ad2020-12-14 15:46:30 +000069 <groupId>org.spockframework</groupId>
70 <artifactId>spock-spring</artifactId>
71 <scope>test</scope>
72 </dependency>
73 <dependency>
Ruslan Kashapovf338b922020-10-28 16:53:58 +020074 <groupId>cglib</groupId>
75 <artifactId>cglib-nodep</artifactId>
76 <scope>test</scope>
77 </dependency>
puthuparambil.aditya008c0ad2020-12-14 15:46:30 +000078 <dependency>
79 <groupId>org.springframework.boot</groupId>
80 <artifactId>spring-boot-starter-test</artifactId>
81 <scope>test</scope>
82 <exclusions>
83 <exclusion>
84 <groupId>org.junit.vintage</groupId>
85 <artifactId>junit-vintage-engine</artifactId>
86 </exclusion>
87 </exclusions>
88 </dependency>
Rishi Chailb220d742020-09-16 15:23:53 +010089 </dependencies>
90
91 <build>
92 <plugins>
93 <plugin>
94 <groupId>org.springframework.boot</groupId>
95 <artifactId>spring-boot-maven-plugin</artifactId>
Rishi Chailb220d742020-09-16 15:23:53 +010096 </plugin>
Claudio David Gasparini900ba022020-11-08 22:18:36 +010097 <plugin>
98 <groupId>com.google.cloud.tools</groupId>
99 <artifactId>jib-maven-plugin</artifactId>
100 </plugin>
puthuparambil.aditya47598112020-11-02 11:31:39 +0000101 <!-- Swagger code generation. -->
102 <plugin>
103 <groupId>io.swagger.codegen.v3</groupId>
104 <artifactId>swagger-codegen-maven-plugin</artifactId>
105 </plugin>
Rishi Chailb220d742020-09-16 15:23:53 +0100106 </plugins>
107 </build>
108</project>