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 |
|
Claudio David Gasparini | 3e38d76 | 2021-01-15 14:08:34 +0100 | [diff] [blame] | 14 | <properties>
|
| 15 | <minimum-coverage>0.88</minimum-coverage>
|
| 16 | </properties>
|
| 17 |
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 18 | <dependencies>
|
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-service</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>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 24 | <groupId>${project.groupId}</groupId>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 25 | <artifactId>cps-ri</artifactId>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 26 | </dependency>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 27 | <dependency>
|
| 28 | <groupId>org.springframework.boot</groupId>
|
Rishi Chail | 2371fe7 | 2020-10-30 12:58:54 +0000 | [diff] [blame] | 29 | <artifactId>spring-boot-starter-web</artifactId>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 30 | <exclusions>
|
| 31 | <exclusion>
|
| 32 | <groupId>org.springframework.boot</groupId>
|
| 33 | <artifactId>spring-boot-starter-tomcat</artifactId>
|
| 34 | </exclusion>
|
| 35 | </exclusions>
|
| 36 | </dependency>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 37 | <dependency>
|
| 38 | <groupId>org.springframework.boot</groupId>
|
| 39 | <artifactId>spring-boot-starter-jetty</artifactId>
|
| 40 | </dependency>
|
Rishi Chail | 14f3af1 | 2020-10-02 09:33:35 +0100 | [diff] [blame] | 41 | <dependency>
|
Ruslan Kashapov | f4d1c98 | 2020-10-29 11:39:31 +0200 | [diff] [blame] | 42 | <groupId>org.springframework.boot</groupId>
|
| 43 | <artifactId>spring-boot-starter-actuator</artifactId>
|
| 44 | </dependency>
|
| 45 | <dependency>
|
Rishi Chail | 14f3af1 | 2020-10-02 09:33:35 +0100 | [diff] [blame] | 46 | <groupId>io.swagger.core.v3</groupId>
|
| 47 | <artifactId>swagger-annotations</artifactId>
|
Rishi Chail | 14f3af1 | 2020-10-02 09:33:35 +0100 | [diff] [blame] | 48 | </dependency>
|
Rishi Chail | 14f3af1 | 2020-10-02 09:33:35 +0100 | [diff] [blame] | 49 | <dependency>
|
puthuparambil.aditya | 4759811 | 2020-11-02 11:31:39 +0000 | [diff] [blame] | 50 | <groupId>io.springfox</groupId>
|
puthuparambil.aditya | 52cff68 | 2020-11-05 11:34:41 +0000 | [diff] [blame] | 51 | <artifactId>springfox-boot-starter</artifactId>
|
puthuparambil.aditya | 4759811 | 2020-11-02 11:31:39 +0000 | [diff] [blame] | 52 | </dependency>
|
Claudio David Gasparini | 1bd1c6c | 2020-11-08 22:31:43 +0100 | [diff] [blame] | 53 | <dependency>
|
| 54 | <groupId>org.apache.commons</groupId>
|
| 55 | <artifactId>commons-lang3</artifactId>
|
| 56 | </dependency>
|
puthuparambil.aditya | 4759811 | 2020-11-02 11:31:39 +0000 | [diff] [blame] | 57 | <dependency>
|
Rishi.Chail | 48830f1 | 2020-11-09 03:28:44 +0000 | [diff] [blame] | 58 | <groupId>org.modelmapper</groupId>
|
| 59 | <artifactId>modelmapper</artifactId>
|
| 60 | </dependency>
|
Ruslan Kashapov | f338b92 | 2020-10-28 16:53:58 +0200 | [diff] [blame] | 61 | <!-- T E S T D E P E N D E N C I E S -->
|
| 62 | <dependency>
|
| 63 | <groupId>org.codehaus.groovy</groupId>
|
| 64 | <artifactId>groovy</artifactId>
|
| 65 | <scope>test</scope>
|
| 66 | </dependency>
|
| 67 | <dependency>
|
| 68 | <groupId>org.spockframework</groupId>
|
| 69 | <artifactId>spock-core</artifactId>
|
| 70 | <scope>test</scope>
|
| 71 | </dependency>
|
| 72 | <dependency>
|
puthuparambil.aditya | 008c0ad | 2020-12-14 15:46:30 +0000 | [diff] [blame] | 73 | <groupId>org.spockframework</groupId>
|
| 74 | <artifactId>spock-spring</artifactId>
|
| 75 | <scope>test</scope>
|
| 76 | </dependency>
|
| 77 | <dependency>
|
Ruslan Kashapov | f338b92 | 2020-10-28 16:53:58 +0200 | [diff] [blame] | 78 | <groupId>cglib</groupId>
|
| 79 | <artifactId>cglib-nodep</artifactId>
|
| 80 | <scope>test</scope>
|
| 81 | </dependency>
|
puthuparambil.aditya | 008c0ad | 2020-12-14 15:46:30 +0000 | [diff] [blame] | 82 | <dependency>
|
| 83 | <groupId>org.springframework.boot</groupId>
|
| 84 | <artifactId>spring-boot-starter-test</artifactId>
|
| 85 | <scope>test</scope>
|
| 86 | <exclusions>
|
| 87 | <exclusion>
|
| 88 | <groupId>org.junit.vintage</groupId>
|
| 89 | <artifactId>junit-vintage-engine</artifactId>
|
| 90 | </exclusion>
|
| 91 | </exclusions>
|
| 92 | </dependency>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 93 | </dependencies>
|
| 94 |
|
| 95 | <build>
|
| 96 | <plugins>
|
| 97 | <plugin>
|
| 98 | <groupId>org.springframework.boot</groupId>
|
| 99 | <artifactId>spring-boot-maven-plugin</artifactId>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 100 | </plugin>
|
Claudio David Gasparini | 900ba02 | 2020-11-08 22:18:36 +0100 | [diff] [blame] | 101 | <plugin>
|
| 102 | <groupId>com.google.cloud.tools</groupId>
|
| 103 | <artifactId>jib-maven-plugin</artifactId>
|
| 104 | </plugin>
|
puthuparambil.aditya | 4759811 | 2020-11-02 11:31:39 +0000 | [diff] [blame] | 105 | <!-- Swagger code generation. -->
|
| 106 | <plugin>
|
| 107 | <groupId>io.swagger.codegen.v3</groupId>
|
| 108 | <artifactId>swagger-codegen-maven-plugin</artifactId>
|
| 109 | </plugin>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 110 | </plugins>
|
| 111 | </build>
|
| 112 | </project>
|