diff options
author | Jonathan Gathman <jonathan.gathman@att.com> | 2018-05-03 14:54:31 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-05-03 14:54:31 +0000 |
commit | 89904fec8cc8b9ed546f4672fd54b36c8b2975cc (patch) | |
tree | 21e91ad64ade3930f92ca18842fc09d9810eac1f | |
parent | a264e1bba59ca9279f2a8daff42af71756d802d7 (diff) | |
parent | 22a2996fa5d9edac9e8b7ffd276fda6b5a7b9b98 (diff) |
Merge "Resolved problem Jacoco analysing 0 classes"
-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> |