From 8326181f79d8114e85f043078e9ada47182d4745 Mon Sep 17 00:00:00 2001
From: Jiman Kim <kimjiman@amazon.com>
Date: Tue, 1 Aug 2023 19:57:21 +0000
Subject: [PATCH] added sonar qube code coverage to aws code

---
 provider/indexer-aws/pom.xml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/provider/indexer-aws/pom.xml b/provider/indexer-aws/pom.xml
index bfb455e7a..bd70ee160 100644
--- a/provider/indexer-aws/pom.xml
+++ b/provider/indexer-aws/pom.xml
@@ -224,6 +224,25 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <groupId>org.jacoco</groupId>
+                <artifactId>jacoco-maven-plugin</artifactId>
+                <version>0.8.6</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>prepare-agent</goal>
+                        </goals>
+                    </execution>
+                    <execution>
+                        <id>report</id>
+                        <phase>test</phase>
+                        <goals>
+                            <goal>report</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
       </plugins>
   </build>
 </project>
-- 
GitLab