waqas.ikram | 12bfb7b | 2020-04-08 15:48:21 +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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <groupId>org.onap.so.adapters</groupId> |
| 6 | <artifactId>etsi-sol003-lcm</artifactId> |
seshukm | adbd1c4 | 2020-08-03 19:23:51 +0530 | [diff] [blame] | 7 | <version>1.7.1-SNAPSHOT</version> |
waqas.ikram | 12bfb7b | 2020-04-08 15:48:21 +0100 | [diff] [blame] | 8 | </parent> |
| 9 | <artifactId>etsi-sol003-lcm-adapter</artifactId> |
| 10 | <name>ETSI SOL003 Life Cycle Management Adapter</name> |
| 11 | |
| 12 | <build> |
| 13 | <plugins> |
| 14 | <plugin> |
| 15 | <groupId>org.jacoco</groupId> |
| 16 | <artifactId>jacoco-maven-plugin</artifactId> |
| 17 | </plugin> |
| 18 | <plugin> |
| 19 | <groupId>org.apache.maven.plugins</groupId> |
| 20 | <artifactId>maven-surefire-plugin</artifactId> |
| 21 | <configuration> |
| 22 | <systemPropertyVariables> |
| 23 | <so.log.level>DEBUG</so.log.level> |
| 24 | </systemPropertyVariables> |
| 25 | <rerunFailingTestsCount>2</rerunFailingTestsCount> |
| 26 | <parallel>suites</parallel> |
| 27 | <useUnlimitedThreads>false</useUnlimitedThreads> |
| 28 | <threadCount>1</threadCount> |
| 29 | </configuration> |
| 30 | </plugin> |
| 31 | </plugins> |
| 32 | </build> |
| 33 | <dependencies> |
| 34 | <dependency> |
| 35 | <groupId>org.springframework.boot</groupId> |
| 36 | <artifactId>spring-boot-starter-web</artifactId> |
| 37 | <exclusions> |
| 38 | <exclusion> |
| 39 | <groupId>com.fasterxml.jackson.core</groupId> |
| 40 | <artifactId>jackson-databind</artifactId> |
| 41 | </exclusion> |
| 42 | </exclusions> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.springframework.boot</groupId> |
| 46 | <artifactId>spring-boot-starter-security</artifactId> |
| 47 | <exclusions> |
| 48 | <exclusion> |
| 49 | <groupId>org.springframework.boot</groupId> |
| 50 | <artifactId>spring-boot-starter-tomcat</artifactId> |
| 51 | </exclusion> |
| 52 | </exclusions> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.springframework.boot</groupId> |
| 56 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.springframework.boot</groupId> |
| 60 | <artifactId>spring-boot-starter-test</artifactId> |
| 61 | <scope>test</scope> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.onap.so</groupId> |
| 65 | <artifactId>common</artifactId> |
| 66 | <version>${project.version}</version> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.onap.so.adapters</groupId> |
| 70 | <artifactId>etsi-sol003-adapter-common</artifactId> |
| 71 | <version>${project.version}</version> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.onap.so.adapters</groupId> |
| 75 | <artifactId>etsi-sol003-lcm-api</artifactId> |
| 76 | <version>${project.version}</version> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.onap.so.adapters</groupId> |
| 80 | <artifactId>etsi-sol003-lcm-ext-clients</artifactId> |
| 81 | <version>${project.version}</version> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.glassfish.jersey.core</groupId> |
| 85 | <artifactId>jersey-client</artifactId> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>org.glassfish.jersey.core</groupId> |
| 89 | <artifactId>jersey-common</artifactId> |
| 90 | </dependency> |
| 91 | <dependency> |
| 92 | <groupId>org.glassfish.jersey.inject</groupId> |
| 93 | <artifactId>jersey-hk2</artifactId> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>org.glassfish.jersey.media</groupId> |
| 97 | <artifactId>jersey-media-json-jackson</artifactId> |
| 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>org.yaml</groupId> |
| 101 | <artifactId>snakeyaml</artifactId> |
| 102 | </dependency> |
| 103 | <dependency> |
| 104 | <groupId>junit</groupId> |
| 105 | <artifactId>junit</artifactId> |
| 106 | <scope>test</scope> |
| 107 | </dependency> |
MukeshKumar | 89be2d7 | 2020-08-31 16:28:26 +0100 | [diff] [blame] | 108 | <dependency> |
| 109 | <groupId>org.onap.so.adapters</groupId> |
| 110 | <artifactId>etsi-sol003-pkgm-adapter</artifactId> |
| 111 | <version>${project.version}</version> |
| 112 | </dependency> |
waqas.ikram | 12bfb7b | 2020-04-08 15:48:21 +0100 | [diff] [blame] | 113 | </dependencies> |
Benjamin, Max | 2dbbd78 | 2020-06-02 23:18:13 -0400 | [diff] [blame] | 114 | </project> |