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-bpmn-flows</artifactId> |
| 10 | <name>SO ETSI NFVO NS LCM BPMN Flows</name> |
waqas.ikram | 21a4768 | 2020-08-20 09:59:05 +0100 | [diff] [blame] | 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 | |
rope252 | c78c3e4 | 2020-08-31 00:14:37 +0100 | [diff] [blame] | 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>org.onap.so.etsi.nfvo</groupId> |
waqas.ikram | 21a4768 | 2020-08-20 09:59:05 +0100 | [diff] [blame] | 37 | <artifactId>so-etsi-nfvo-ns-lcm-api</artifactId> |
| 38 | <version>${project.version}</version> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.onap.so.etsi.nfvo</groupId> |
rope252 | c78c3e4 | 2020-08-31 00:14:37 +0100 | [diff] [blame] | 42 | <artifactId>so-etsi-nfvo-ns-lcm-database-service</artifactId> |
| 43 | <version>${project.version}</version> |
| 44 | </dependency> |
waqas.ikram | 21a4768 | 2020-08-20 09:59:05 +0100 | [diff] [blame] | 45 | <dependency> |
| 46 | <groupId>org.onap.so.adapters</groupId> |
| 47 | <artifactId>etsi-sol003-pkgm-ext-clients</artifactId> |
| 48 | <version>${project.version}</version> |
| 49 | </dependency> |
| 50 | <dependency> |
waqas.ikram | 3323837 | 2020-09-07 17:14:01 +0100 | [diff] [blame] | 51 | <groupId>org.onap.so.adapters</groupId> |
| 52 | <artifactId>etsi-sol003-lcm-api</artifactId> |
| 53 | <version>${project.version}</version> |
| 54 | </dependency> |
| 55 | <dependency> |
waqas.ikram | 21a4768 | 2020-08-20 09:59:05 +0100 | [diff] [blame] | 56 | <groupId>org.onap.so</groupId> |
| 57 | <artifactId>aai-client</artifactId> |
| 58 | <version>${project.version}</version> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.camunda.bpm.springboot</groupId> |
| 62 | <artifactId>camunda-bpm-spring-boot-starter-rest</artifactId> |
| 63 | <version>${camunda.springboot.version}</version> |
| 64 | <exclusions> |
| 65 | <exclusion> |
| 66 | <groupId>org.camunda.bpmn</groupId> |
| 67 | <artifactId>camunda-engine-rest-core</artifactId> |
| 68 | </exclusion> |
| 69 | </exclusions> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.yaml</groupId> |
| 73 | <artifactId>snakeyaml</artifactId> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>com.shazam</groupId> |
| 77 | <artifactId>shazamcrest</artifactId> |
| 78 | <version>${snakeyaml-version}</version> |
| 79 | <exclusions> |
| 80 | <exclusion> |
| 81 | <groupId>com.google.guava</groupId> |
| 82 | <artifactId>guava</artifactId> |
| 83 | </exclusion> |
| 84 | <exclusion> |
| 85 | <groupId>org.apache.commons</groupId> |
| 86 | <artifactId>commons-lang3</artifactId> |
| 87 | </exclusion> |
| 88 | <exclusion> |
| 89 | <groupId>com.vaadin.external.google</groupId> |
| 90 | <artifactId>android-json</artifactId> |
| 91 | </exclusion> |
| 92 | </exclusions> |
| 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>com.h2database</groupId> |
| 96 | <artifactId>h2</artifactId> |
| 97 | <scope>test</scope> |
| 98 | </dependency> |
waqas.ikram | 36982a7 | 2020-09-08 14:15:20 +0100 | [diff] [blame] | 99 | <dependency> |
| 100 | <groupId>org.hamcrest</groupId> |
| 101 | <artifactId>hamcrest</artifactId> |
| 102 | <version>${hamcrest-version}</version> |
| 103 | <scope>test</scope> |
| 104 | </dependency> |
waqas.ikram | 8008520 | 2020-10-07 13:20:38 +0100 | [diff] [blame] | 105 | <dependency> |
| 106 | <groupId>nl.jqno.equalsverifier</groupId> |
| 107 | <artifactId>equalsverifier</artifactId> |
| 108 | <version>${equalsverifier-version}</version> |
| 109 | <scope>test</scope> |
| 110 | </dependency> |
Benjamin, Max (mb388a) | d5968f5 | 2021-02-05 20:34:11 -0500 | [diff] [blame^] | 111 | <dependency> |
| 112 | <groupId>org.springframework.boot</groupId> |
| 113 | <artifactId>spring-boot-starter-test</artifactId> |
| 114 | <scope>test</scope> |
| 115 | </dependency> |
rope252 | c78c3e4 | 2020-08-31 00:14:37 +0100 | [diff] [blame] | 116 | </dependencies> |
MukeshKumar | 1d9546b | 2020-08-11 09:55:46 +0100 | [diff] [blame] | 117 | </project> |