diff options
author | Benjamin, Max (mb388a) <mb388a@att.com> | 2021-02-05 20:34:11 -0500 |
---|---|---|
committer | Benjamin, Max (mb388a) <mb388a@att.com> | 2021-02-16 15:45:44 -0500 |
commit | d5968f56b382c50dfafc3b6feeccf5b81d176b9d (patch) | |
tree | fb84f73c534afa746fb4eaefb247c0c096b8b7a3 /common | |
parent | 666b56c9241c37b22f631fb88f4a40aedefa2eac (diff) |
update camunda and spring to latest versions
Updated camunda to 7.14 and updated spring boot camunda to 3.4
Started to clean up duplicate maven dependencies
Issue-ID: SO-3521
Signed-off-by: Benjamin, Max (mb388a) <mb388a@att.com>
Change-Id: Ic65b04772b91dd989e41d6b6b93872978bc4e4e2
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 08f797d7e5..5594329763 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -8,7 +8,7 @@ <version>1.7.1-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> |