diff options
author | Hima Elisetty <hbindu@research.att.com> | 2018-01-12 10:36:42 -0500 |
---|---|---|
committer | Hima Elisetty <hbindu@research.att.com> | 2018-01-17 12:08:18 -0500 |
commit | 1298fd26f37cd451cbf1adbea68b98151662e796 (patch) | |
tree | ca09e0586c1d0d401841fc6e12228e4dbc7f2f6f /ecomp-sdk/epsdk-analytics | |
parent | 304033445a8333cd088910fc3e43ca9222237816 (diff) |
Introduce JUNIT Plumbing
Issue-ID: PORTAL-161, PORTAL-160, PORTAL-159
Includes Change in encryption and decryption algorithm
Change-Id: I5f379d6d9ac25536744152ac1d61223a52f1ce7f
Signed-off-by: Hima Elisetty <hbindu@research.att.com>
Diffstat (limited to 'ecomp-sdk/epsdk-analytics')
-rw-r--r-- | ecomp-sdk/epsdk-analytics/pom.xml | 33 |
1 files changed, 32 insertions, 1 deletions
diff --git a/ecomp-sdk/epsdk-analytics/pom.xml b/ecomp-sdk/epsdk-analytics/pom.xml index 9d433363..57dbdc0a 100644 --- a/ecomp-sdk/epsdk-analytics/pom.xml +++ b/ecomp-sdk/epsdk-analytics/pom.xml @@ -19,7 +19,31 @@ <!-- properties are inherited from parent --> <!-- repositories are inherited from parent --> - + <build> + <plugins> + <plugin> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + <!-- version managed by oparent ${jacocoVersion}</version> --> + <executions> + <execution> + <id>portal-offline-instrument</id> + <phase>none</phase> + <goals> + <goal>instrument</goal> + </goals> + </execution> + <execution> + <id>portal-restore-instrumented-classes</id> + <phase>none</phase> + <goals> + <goal>restore-instrumented-classes</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> +</build> <dependencies> <!-- sdk-core --> @@ -160,6 +184,13 @@ </exclusion> </exclusions> </dependency> + <!-- Jacoco for offline instrumentation --> + <dependency> + <groupId>org.jacoco</groupId> + <artifactId>org.jacoco.agent</artifactId> + <version>${jacoco.version}</version> + <classifier>runtime</classifier> + </dependency> </dependencies> </project> |