blob: fcd97dcf771049a33ce666cf4c2cbe8a03456895 [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>
38 <groupId>io.swagger.core.v3</groupId>
39 <artifactId>swagger-annotations</artifactId>
Rishi Chail14f3af12020-10-02 09:33:35 +010040 </dependency>
Rishi Chail14f3af12020-10-02 09:33:35 +010041 <dependency>
42 <groupId>io.swagger.core.v3</groupId>
43 <artifactId>swagger-jaxrs2</artifactId>
Rishi Chail14f3af12020-10-02 09:33:35 +010044 </dependency>
Rishi Chailb220d742020-09-16 15:23:53 +010045 <dependency>
puthuparambil.aditya47598112020-11-02 11:31:39 +000046 <groupId>io.springfox</groupId>
47 <artifactId>springfox-swagger2</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>io.springfox</groupId>
51 <artifactId>springfox-swagger-ui</artifactId>
52 </dependency>
53 <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>
64 </dependencies>
65
66 <build>
67 <plugins>
68 <plugin>
69 <groupId>org.springframework.boot</groupId>
70 <artifactId>spring-boot-maven-plugin</artifactId>
Rishi Chailb220d742020-09-16 15:23:53 +010071 </plugin>
puthuparambil.aditya47598112020-11-02 11:31:39 +000072 <!-- Swagger code generation. -->
73 <plugin>
74 <groupId>io.swagger.codegen.v3</groupId>
75 <artifactId>swagger-codegen-maven-plugin</artifactId>
76 </plugin>
niamhcoref7ba3592020-10-19 12:48:06 +010077 <plugin>
Bruno Sakoto49c88d92020-10-06 22:09:58 -040078 <!-- Download Swagger UI webjar. -->
79 <groupId>org.apache.maven.plugins</groupId>
80 <artifactId>maven-dependency-plugin</artifactId>
Bruno Sakoto49c88d92020-10-06 22:09:58 -040081 </plugin>
82 <plugin>
83 <!-- Copy Swagger UI resources to static resources directory. -->
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-resources-plugin</artifactId>
Bruno Sakoto49c88d92020-10-06 22:09:58 -040086 </plugin>
87 <plugin>
88 <!-- Replace the OpenAPI specification example URL with the local one. -->
89 <groupId>com.google.code.maven-replacer-plugin</groupId>
90 <artifactId>replacer</artifactId>
Bruno Sakoto49c88d92020-10-06 22:09:58 -040091 </plugin>
Rishi Chailb220d742020-09-16 15:23:53 +010092 </plugins>
93 </build>
94</project>