diff options
author | Steve Smokowski <ss835w@att.com> | 2021-02-17 14:35:54 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-02-17 14:35:54 +0000 |
commit | ba4f60d79b9039c9cb1db46e68c4e9b3efe8f708 (patch) | |
tree | b7e1aa340c13abddd6019c350dda8f59efabff0b /common | |
parent | 207a5e38c1f565c4f07f54b7ff174c0002fdb413 (diff) | |
parent | d5968f56b382c50dfafc3b6feeccf5b81d176b9d (diff) |
Merge "update camunda and spring to latest versions"
Diffstat (limited to 'common')
-rw-r--r-- | common/pom.xml | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/common/pom.xml b/common/pom.xml index e05d358f3a..f1541314ec 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -8,7 +8,7 @@ <version>1.8.0-SNAPSHOT</version> </parent> <artifactId>common</artifactId> - <name>MSO Common classes</name> + <name>common</name> <description>MSO Common classes:- Logger</description> <properties> @@ -225,7 +225,7 @@ <dependency> <groupId>org.camunda.bpm</groupId> <artifactId>camunda-external-task-client</artifactId> - <version>1.1.1</version> + <version>1.4.0</version> </dependency> <dependency> <groupId>org.onap.appc.client</groupId> @@ -393,5 +393,23 @@ </executions> </plugin> </plugins> + <pluginManagement> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.20</version> + <configuration> + <systemPropertyVariables> + <so.log.level>DEBUG</so.log.level> + </systemPropertyVariables> + <rerunFailingTestsCount>2</rerunFailingTestsCount> + <parallel>suites</parallel> + <useUnlimitedThreads>false</useUnlimitedThreads> + <threadCount>1</threadCount> + <argLine>${surefireArgLine}</argLine> + </configuration> + </plugin> + </plugins> + </pluginManagement> </build> </project> |