diff options
author | Youssef Chawki <youssef.chawki@outlook.com> | 2018-05-02 00:14:47 +0200 |
---|---|---|
committer | Youssef Chawki <youssef.chawki@outlook.com> | 2018-05-02 00:22:38 +0200 |
commit | 22a2996fa5d9edac9e8b7ffd276fda6b5a7b9b98 (patch) | |
tree | 3eb132b778b6814fe4059ab3af8f17f190f3542b /auth | |
parent | 0af1db4fda4667244af0cec983293aefa203d710 (diff) |
Resolved problem Jacoco analysing 0 classes
Change-Id: I5561488482369b013403ce9be004f68ccb7518ea
Issue-ID: AAF-239
Signed-off-by: Youssef Chawki <youssef.chawki@outlook.com>
Diffstat (limited to 'auth')
-rw-r--r-- | auth/auth-deforg/pom.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/auth/auth-deforg/pom.xml b/auth/auth-deforg/pom.xml index f8dc24de..d282819b 100644 --- a/auth/auth-deforg/pom.xml +++ b/auth/auth-deforg/pom.xml @@ -179,6 +179,9 @@ <configuration> <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile> <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory> + <includes> + <include>**</include> + </includes> </configuration> </execution> <execution> @@ -189,6 +192,9 @@ </goals> <configuration> <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile> + <includes> + <include>**</include> + </includes> <propertyName>failsafeArgLine</propertyName> </configuration> </execution> |