Update pom for sonar
[aai/model-loader.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index fbd564e..d217ba8 100644 (file)
--- a/pom.xml
+++ b/pom.xml
                <checkstyle.config.location>google_checks.xml</checkstyle.config.location>
                <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
+              <sonar.language>java</sonar.language>
+              <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
+              <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
+              <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
+              <sonar.jacoco.reportMissing.force.zero>false</sonar.jacoco.reportMissing.force.zero>
+              <sonar.projectVersion>${project.version}</sonar.projectVersion>
        </properties>
 
        <dependencies>
                                <artifactId>docker-maven-plugin</artifactId>
                                <version>0.4.11</version>
                                <configuration>         
-                                       <serverId>nexus3.openecomp.org:10003</serverId>
+                                       <verbose>true</verbose>
+                                       <serverId>docker-hub</serverId>
                                        <imageName>${docker.push.registry}/openecomp/${project.artifactId}</imageName>                                  
                                        <dockerDirectory>${docker.location}</dockerDirectory>
                                        <imageTags>
                                <artifactId>maven-surefire-plugin</artifactId>
                                <version>2.12.4</version>
                                <configuration>
-                                       <argLine>-javaagent:${project.build.directory}/agents/powermock-javaagent.jar
-                                               -noverify</argLine>
+                                  <argLine>-noverify ${argLine}</argLine>
                                </configuration>
                        </plugin>
                        <plugin>
                <skip>true</skip>
                </configuration>
              </plugin>
+            <plugin>
+             <groupId>org.codehaus.mojo</groupId>
+             <artifactId>sonar-maven-plugin</artifactId>
+             <version>3.2</version>
+           </plugin>
+           <plugin>
+             <groupId>org.jacoco</groupId>
+             <artifactId>jacoco-maven-plugin</artifactId>
+             <version>0.7.7.201606060606</version>
+             <configuration>
+                  <dumpOnExit>true</dumpOnExit>
+             </configuration>
+             <executions>
+                  <execution>
+                    <id>jacoco-initialize-unit-tests</id>
+                    <goals>
+                          <goal>prepare-agent</goal>
+                    </goals>
+                    <configuration>
+                          <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
+                          <!-- <append>true</append> -->
+                    </configuration>
+                  </execution>
+             </executions>
+           </plugin>
                </plugins>              
        </build>