blob: f9be75b7e32ac0588b672dc0d58621e7838b9b7d [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>
46 <groupId>org.springframework.boot</groupId>
47 <artifactId>spring-boot-starter-test</artifactId>
48 <scope>test</scope>
49 <exclusions>
50 <exclusion>
51 <groupId>org.junit.vintage</groupId>
52 <artifactId>junit-vintage-engine</artifactId>
53 </exclusion>
54 </exclusions>
55 </dependency>
56 </dependencies>
57
58 <build>
59 <plugins>
60 <plugin>
61 <groupId>org.springframework.boot</groupId>
62 <artifactId>spring-boot-maven-plugin</artifactId>
Rishi Chailb220d742020-09-16 15:23:53 +010063 </plugin>
niamhcoref7ba3592020-10-19 12:48:06 +010064 <plugin>
Bruno Sakoto49c88d92020-10-06 22:09:58 -040065 <!-- Download Swagger UI webjar. -->
66 <groupId>org.apache.maven.plugins</groupId>
67 <artifactId>maven-dependency-plugin</artifactId>
Bruno Sakoto49c88d92020-10-06 22:09:58 -040068 </plugin>
69 <plugin>
70 <!-- Copy Swagger UI resources to static resources directory. -->
71 <groupId>org.apache.maven.plugins</groupId>
72 <artifactId>maven-resources-plugin</artifactId>
Bruno Sakoto49c88d92020-10-06 22:09:58 -040073 </plugin>
74 <plugin>
75 <!-- Replace the OpenAPI specification example URL with the local one. -->
76 <groupId>com.google.code.maven-replacer-plugin</groupId>
77 <artifactId>replacer</artifactId>
Bruno Sakoto49c88d92020-10-06 22:09:58 -040078 </plugin>
Rishi Chailb220d742020-09-16 15:23:53 +010079 </plugins>
80 </build>
81</project>