diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2020-01-16 12:31:52 -0500 |
---|---|---|
committer | Pamela Dragosh <pdragosh@research.att.com> | 2020-01-16 12:31:57 -0500 |
commit | 60b848cd9c5a7d947a52e37128e73e96ee5d95bf (patch) | |
tree | 3969235576fa74a3f1713bcc41bb7df4efa48b13 /applications | |
parent | cdedcbdd85bb5c0cd2db390c9d07924129f86ac2 (diff) |
Ensure one jacoco output file
Sub-modules under sub-modules need to set the path to
ensure a single jacoco-ut.exec file is produced and
appended to.
This doesn't seem to affect the results, but I'd like
to be consistent.
Issue-ID: POLICY-2321
Change-Id: Ia2223df55ce0f4be6e81fa61bf7df711e12ad760
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
Diffstat (limited to 'applications')
-rw-r--r-- | applications/pom.xml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/applications/pom.xml b/applications/pom.xml index a12875bd..c1af6b86 100644 --- a/applications/pom.xml +++ b/applications/pom.xml @@ -2,7 +2,7 @@ ============LICENSE_START======================================================= ONAP ================================================================================ - Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. + Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -31,6 +31,10 @@ <groupId>org.onap.policy.xacml-pdp.applications</groupId> <artifactId>applications</artifactId> + <properties> + <jacoco.dataFile>${project.basedir}/../../../target/code-coverage/jacoco-ut.exec</jacoco.dataFile> + </properties> + <modules> <module>common</module> <module>monitoring</module> |