Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
Claudio David Gasparini | f94db30 | 2021-01-20 11:42:19 +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>
|
Claudio D. Gasparini | b1ccfce | 2021-02-04 09:33:28 +0100 | [diff] [blame] | 15 | <minimum-coverage>0.51</minimum-coverage>
|
Claudio David Gasparini | 3e38d76 | 2021-01-15 14:08:34 +0100 | [diff] [blame] | 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>
|
Claudio D. Gasparini | b77bf25 | 2021-01-28 15:36:37 +0100 | [diff] [blame] | 54 | <groupId>io.swagger</groupId>
|
| 55 | <artifactId>swagger-annotations</artifactId>
|
| 56 | </dependency>
|
| 57 | <dependency>
|
Claudio David Gasparini | 1bd1c6c | 2020-11-08 22:31:43 +0100 | [diff] [blame] | 58 | <groupId>org.apache.commons</groupId>
|
| 59 | <artifactId>commons-lang3</artifactId>
|
| 60 | </dependency>
|
puthuparambil.aditya | 4759811 | 2020-11-02 11:31:39 +0000 | [diff] [blame] | 61 | <dependency>
|
Rishi.Chail | 48830f1 | 2020-11-09 03:28:44 +0000 | [diff] [blame] | 62 | <groupId>org.modelmapper</groupId>
|
| 63 | <artifactId>modelmapper</artifactId>
|
| 64 | </dependency>
|
Ruslan Kashapov | f338b92 | 2020-10-28 16:53:58 +0200 | [diff] [blame] | 65 | <!-- T E S T D E P E N D E N C I E S -->
|
| 66 | <dependency>
|
| 67 | <groupId>org.codehaus.groovy</groupId>
|
| 68 | <artifactId>groovy</artifactId>
|
| 69 | <scope>test</scope>
|
| 70 | </dependency>
|
| 71 | <dependency>
|
| 72 | <groupId>org.spockframework</groupId>
|
| 73 | <artifactId>spock-core</artifactId>
|
| 74 | <scope>test</scope>
|
| 75 | </dependency>
|
| 76 | <dependency>
|
puthuparambil.aditya | 008c0ad | 2020-12-14 15:46:30 +0000 | [diff] [blame] | 77 | <groupId>org.spockframework</groupId>
|
| 78 | <artifactId>spock-spring</artifactId>
|
| 79 | <scope>test</scope>
|
| 80 | </dependency>
|
| 81 | <dependency>
|
Ruslan Kashapov | f338b92 | 2020-10-28 16:53:58 +0200 | [diff] [blame] | 82 | <groupId>cglib</groupId>
|
| 83 | <artifactId>cglib-nodep</artifactId>
|
| 84 | <scope>test</scope>
|
| 85 | </dependency>
|
puthuparambil.aditya | 008c0ad | 2020-12-14 15:46:30 +0000 | [diff] [blame] | 86 | <dependency>
|
| 87 | <groupId>org.springframework.boot</groupId>
|
| 88 | <artifactId>spring-boot-starter-test</artifactId>
|
| 89 | <scope>test</scope>
|
| 90 | <exclusions>
|
| 91 | <exclusion>
|
| 92 | <groupId>org.junit.vintage</groupId>
|
| 93 | <artifactId>junit-vintage-engine</artifactId>
|
| 94 | </exclusion>
|
| 95 | </exclusions>
|
| 96 | </dependency>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 97 | </dependencies>
|
| 98 |
|
| 99 | <build>
|
| 100 | <plugins>
|
puthuparambil.aditya | 4759811 | 2020-11-02 11:31:39 +0000 | [diff] [blame] | 101 | <!-- Swagger code generation. -->
|
| 102 | <plugin>
|
| 103 | <groupId>io.swagger.codegen.v3</groupId>
|
| 104 | <artifactId>swagger-codegen-maven-plugin</artifactId>
|
Claudio D. Gasparini | b77bf25 | 2021-01-28 15:36:37 +0100 | [diff] [blame] | 105 | <executions>
|
| 106 | <execution>
|
| 107 | <goals>
|
| 108 | <goal>generate</goal>
|
| 109 | </goals>
|
| 110 | <configuration>
|
| 111 | <inputSpec>${project.basedir}/docs/api/swagger/openapi.yml</inputSpec>
|
| 112 | <invokerPackage>org.onap.cps.rest.controller</invokerPackage>
|
| 113 | <modelPackage>org.onap.cps.rest.model</modelPackage>
|
| 114 | <apiPackage>org.onap.cps.rest.api</apiPackage>
|
| 115 | <language>spring</language>
|
| 116 | <generateSupportingFiles>false</generateSupportingFiles>
|
| 117 | <configOptions>
|
| 118 | <sourceFolder>src/gen/java</sourceFolder>
|
| 119 | <dateLibrary>java11</dateLibrary>
|
| 120 | <interfaceOnly>true</interfaceOnly>
|
| 121 | <useTags>true</useTags>
|
| 122 | </configOptions>
|
| 123 | </configuration>
|
| 124 | </execution>
|
| 125 | </executions>
|
puthuparambil.aditya | 4759811 | 2020-11-02 11:31:39 +0000 | [diff] [blame] | 126 | </plugin>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 127 | </plugins>
|
| 128 | </build>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 129 | </project>
|