Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
niamhcore | f7ba359 | 2020-10-19 12:48:06 +0100 | [diff] [blame] | 2 | 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 Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 4 | <modelVersion>4.0.0</modelVersion>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 5 | <parent>
|
| 6 | <groupId>org.onap.cps</groupId>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame^] | 7 | <artifactId>cps-parent</artifactId>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 8 | <version>0.0.1-SNAPSHOT</version>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame^] | 9 | <relativePath>../cps-parent/pom.xml</relativePath>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 10 | </parent>
|
| 11 |
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame^] | 12 | <artifactId>cps-rest</artifactId>
|
| 13 |
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 14 | <dependencies>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 15 | <dependency>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame^] | 16 | <groupId>${project.groupId}</groupId>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 17 | <artifactId>cps-service</artifactId>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 18 | </dependency>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 19 | <dependency>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame^] | 20 | <groupId>${project.groupId}</groupId>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 21 | <artifactId>cps-ri</artifactId>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 22 | </dependency>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 23 | <dependency>
|
| 24 | <groupId>org.springframework.boot</groupId>
|
Rishi Chail | 2371fe7 | 2020-10-30 12:58:54 +0000 | [diff] [blame] | 25 | <artifactId>spring-boot-starter-web</artifactId>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 26 | <exclusions>
|
| 27 | <exclusion>
|
| 28 | <groupId>org.springframework.boot</groupId>
|
| 29 | <artifactId>spring-boot-starter-tomcat</artifactId>
|
| 30 | </exclusion>
|
| 31 | </exclusions>
|
| 32 | </dependency>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 33 | <dependency>
|
| 34 | <groupId>org.springframework.boot</groupId>
|
| 35 | <artifactId>spring-boot-starter-jetty</artifactId>
|
| 36 | </dependency>
|
Rishi Chail | 14f3af1 | 2020-10-02 09:33:35 +0100 | [diff] [blame] | 37 | <dependency>
|
| 38 | <groupId>io.swagger.core.v3</groupId>
|
| 39 | <artifactId>swagger-annotations</artifactId>
|
Rishi Chail | 14f3af1 | 2020-10-02 09:33:35 +0100 | [diff] [blame] | 40 | </dependency>
|
Rishi Chail | 14f3af1 | 2020-10-02 09:33:35 +0100 | [diff] [blame] | 41 | <dependency>
|
| 42 | <groupId>io.swagger.core.v3</groupId>
|
| 43 | <artifactId>swagger-jaxrs2</artifactId>
|
Rishi Chail | 14f3af1 | 2020-10-02 09:33:35 +0100 | [diff] [blame] | 44 | </dependency>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 45 | <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 Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 63 | </plugin>
|
niamhcore | f7ba359 | 2020-10-19 12:48:06 +0100 | [diff] [blame] | 64 | <plugin>
|
Bruno Sakoto | 49c88d9 | 2020-10-06 22:09:58 -0400 | [diff] [blame] | 65 | <!-- Download Swagger UI webjar. -->
|
| 66 | <groupId>org.apache.maven.plugins</groupId>
|
| 67 | <artifactId>maven-dependency-plugin</artifactId>
|
Bruno Sakoto | 49c88d9 | 2020-10-06 22:09:58 -0400 | [diff] [blame] | 68 | </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 Sakoto | 49c88d9 | 2020-10-06 22:09:58 -0400 | [diff] [blame] | 73 | </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 Sakoto | 49c88d9 | 2020-10-06 22:09:58 -0400 | [diff] [blame] | 78 | </plugin>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 79 | </plugins>
|
| 80 | </build>
|
| 81 | </project>
|