Skip to content
Snippets Groups Projects
Commit 93756492 authored by Deepa Kumari's avatar Deepa Kumari
Browse files

adding core code coverage

parent e4d8bd4a
No related branches found
No related tags found
1 merge request!848[MSCOSDU-3593]Adding core code coverage
Pipeline #244503 failed
......@@ -33,6 +33,7 @@ variables:
IBM_HELM_CONFIG_PATH: devops/ibm/ibm-storage-config
IBM_HELM_DEPLOY_PATH: devops/ibm/ibm-storage-deploy
CORE_BUILD_SUBDIR: storage-core
include:
- project: "osdu/platform/ci-cd-pipelines"
file: "standard-setup.yml"
......
......@@ -247,6 +247,28 @@
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.10</version>
<configuration>
<excludes></excludes>
</configuration>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment