diff options
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 35 |
1 files changed, 22 insertions, 13 deletions
@@ -20,8 +20,8 @@ Modifications copyright (c) 2018-2019 Nokia ================================================================================ --> <project xmlns="http://maven.apache.org/POM/4.0.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.openecomp.sdc</groupId> @@ -106,18 +106,20 @@ Modifications copyright (c) 2018-2019 Nokia <commons-jci-core.version>1.1</commons-jci-core.version> <!--TESTING--> - <mockito.version>2.18.3</mockito.version> + <powermock.version>2.0.7</powermock.version> + <mockito.version>3.3.3</mockito.version> <mockitoJupiter.version>3.3.3</mockitoJupiter.version> - <jmockit.version>1.33</jmockit.version> + <jmockit.version>1.35</jmockit.version> <junit.version>4.12</junit.version> + <junit.platform.version>1.6.0</junit.platform.version> <junitJupiter.version>5.6.0</junitJupiter.version> <assertj.version>3.10.0</assertj.version> <testng.version>6.14.3</testng.version> - <cucumber.version>2.4.0</cucumber.version> + <cucumber.version>5.6.0</cucumber.version> <bean-matchers.version>0.11</bean-matchers.version> <hamcrest.version>2.1</hamcrest.version> <hamcrest-all.version>1.3</hamcrest-all.version> - <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version> + <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> <maven-jar-plugin.version>2.4</maven-jar-plugin.version> <!-- parser--> @@ -126,8 +128,10 @@ Modifications copyright (c) 2018-2019 Nokia <!-- sonar --> <sonar.projectVersion>${project.version}</sonar.projectVersion> <sonar.nodejs.executable>${project.basedir}/node/node</sonar.nodejs.executable> - <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath> - <sonar.javascript.lcov.reportPaths>${project.build.directory}/code-coverage/lcov.info</sonar.javascript.lcov.reportPaths> + <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports + </sonar.surefire.reportsPath> + <sonar.javascript.lcov.reportPaths>${project.build.directory}/code-coverage/lcov.info + </sonar.javascript.lcov.reportPaths> <sonar.coverage.jacoco.xmlReportPaths> ${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml </sonar.coverage.jacoco.xmlReportPaths> @@ -359,6 +363,11 @@ Modifications copyright (c) 2018-2019 Nokia </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-failsafe-plugin</artifactId> + <version>${maven-surefire-plugin.version}</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> </plugin> @@ -456,12 +465,12 @@ Modifications copyright (c) 2018-2019 Nokia <configuration> <source> pom.properties['deploy.url'] = - pom.version.contains('-SNAPSHOT') ? - project.distributionManagement.snapshotRepository.url : - project.distributionManagement.repository.url; + pom.version.contains('-SNAPSHOT') ? + project.distributionManagement.snapshotRepository.url : + project.distributionManagement.repository.url; pom.properties['repo.id'] = pom.version.contains('-SNAPSHOT') ? - project.distributionManagement.snapshotRepository.id : - project.distributionManagement.repository.id; + project.distributionManagement.snapshotRepository.id : + project.distributionManagement.repository.id; </source> </configuration> </execution> |