MukeshKumar | 1d9546b | 2020-08-11 09:55:46 +0100 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <groupId>org.onap.so.etsi.nfvo</groupId> |
| 6 | <artifactId>so-etsi-nfvo-ns-lcm</artifactId> |
| 7 | <version>1.7.1-SNAPSHOT</version> |
| 8 | </parent> |
| 9 | <artifactId>so-etsi-nfvo-ns-lcm-service</artifactId> |
| 10 | <name>SO ETSI NFVO NS LCM Service</name> |
waqas.ikram | 5cb70ec | 2020-08-14 13:01:59 +0100 | [diff] [blame] | 11 | |
| 12 | <dependencies> |
| 13 | <dependency> |
| 14 | <groupId>org.onap.so.etsi.nfvo</groupId> |
| 15 | <artifactId>so-etsi-nfvo-ns-lcm-api</artifactId> |
| 16 | <version>${project.version}</version> |
| 17 | </dependency> |
| 18 | <dependency> |
| 19 | <groupId>org.springframework.boot</groupId> |
| 20 | <artifactId>spring-boot-starter-web</artifactId> |
| 21 | <exclusions> |
| 22 | <exclusion> |
| 23 | <groupId>com.fasterxml.jackson.core</groupId> |
| 24 | <artifactId>jackson-databind</artifactId> |
| 25 | </exclusion> |
| 26 | </exclusions> |
| 27 | </dependency> |
| 28 | <dependency> |
| 29 | <groupId>org.springframework.boot</groupId> |
| 30 | <artifactId>spring-boot-starter-security</artifactId> |
| 31 | <exclusions> |
| 32 | <exclusion> |
| 33 | <groupId>org.springframework.boot</groupId> |
| 34 | <artifactId>spring-boot-starter-tomcat</artifactId> |
| 35 | </exclusion> |
| 36 | </exclusions> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>org.springframework.boot</groupId> |
| 40 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.springframework.boot</groupId> |
| 44 | <artifactId>spring-boot-starter-test</artifactId> |
| 45 | <scope>test</scope> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.onap.so</groupId> |
| 49 | <artifactId>common</artifactId> |
| 50 | <version>${project.version}</version> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>junit</groupId> |
| 54 | <artifactId>junit</artifactId> |
| 55 | <scope>test</scope> |
| 56 | </dependency> |
| 57 | </dependencies> |
MukeshKumar | 1d9546b | 2020-08-11 09:55:46 +0100 | [diff] [blame] | 58 | </project> |