blob: 3c92a4e209758d2d7d53cca400703e4906e7b083 [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 Chailb220d742020-09-16 15:23:53 +010054 <groupId>org.springframework.boot</groupId>
55 <artifactId>spring-boot-starter-test</artifactId>
56 <scope>test</scope>
57 <exclusions>
58 <exclusion>
59 <groupId>org.junit.vintage</groupId>
60 <artifactId>junit-vintage-engine</artifactId>
61 </exclusion>
62 </exclusions>
63 </dependency>
Ruslan Kashapovf338b922020-10-28 16:53:58 +020064 <!-- T E S T D E P E N D E N C I E S -->
65 <dependency>
66 <groupId>org.codehaus.groovy</groupId>
67 <artifactId>groovy</artifactId>
68 <scope>test</scope>
69 </dependency>
70 <dependency>
71 <groupId>org.spockframework</groupId>
72 <artifactId>spock-core</artifactId>
73 <scope>test</scope>
74 </dependency>
75 <dependency>
76 <groupId>cglib</groupId>
77 <artifactId>cglib-nodep</artifactId>
78 <scope>test</scope>
79 </dependency>
Rishi Chailb220d742020-09-16 15:23:53 +010080 </dependencies>
81
82 <build>
83 <plugins>
84 <plugin>
85 <groupId>org.springframework.boot</groupId>
86 <artifactId>spring-boot-maven-plugin</artifactId>
Rishi Chailb220d742020-09-16 15:23:53 +010087 </plugin>
puthuparambil.aditya47598112020-11-02 11:31:39 +000088 <!-- Swagger code generation. -->
89 <plugin>
90 <groupId>io.swagger.codegen.v3</groupId>
91 <artifactId>swagger-codegen-maven-plugin</artifactId>
92 </plugin>
Rishi Chailb220d742020-09-16 15:23:53 +010093 </plugins>
94 </build>
95</project>