diff options
author | 2018-11-08 17:11:10 +0100 | |
---|---|---|
committer | 2018-11-09 10:32:54 +0100 | |
commit | 2579386298fc4862a87073f8c719986925d77424 (patch) | |
tree | 58e8cff333a1d3c4b6eb4958b3457b22c39e41b4 /pom.xml | |
parent | ac4958ae6d30e60c5cf0bd66ce8f3c79191c6726 (diff) |
Fix DCAE status refresh
Fix the DCAE status refresh that was not done during the loading of the
model in Clamp
Issue-ID: CLAMP-246
Change-Id: I61ec1de74d46879ba638833bcab5143966d37228
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -856,9 +856,9 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> - <version>2.19.1</version> + <version>2.22.1</version> <configuration> - <forkCount>1</forkCount> + <forkCount>0</forkCount> <reuseForks>false</reuseForks> </configuration> </plugin> @@ -866,8 +866,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> - <version>2.17</version> - + <version>2.22.1</version> <executions> <execution> <id>integration-tests</id> @@ -876,10 +875,13 @@ <goal>verify</goal> </goals> <configuration> + <additionalClasspathElements> + <additionalClasspathElement>${project.build.directory}/classes</additionalClasspathElement> + </additionalClasspathElements> <includes> <include>**/*ItCase.java</include> </includes> - <forkCount>1</forkCount> + <forkCount>0</forkCount> <reuseForks>false</reuseForks> </configuration> </execution> |