AT&T 2.0.19 Code drop, stage 4
[aaf/authz.git] / authz-client / pom.xml
index c1c3192..7624fac 100644 (file)
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">\r
        <modelVersion>4.0.0</modelVersion>\r
 \r
-       <!-- No Parent on Purpose!!! -->\r
        \r
+       <parent>\r
+               <groupId>org.onap.aaf.authz</groupId>\r
+               <artifactId>parent</artifactId>\r
+               <version>1.0.1-SNAPSHOT</version>\r
+               <relativePath>../pom.xml</relativePath>\r
+       </parent>\r
        \r
-       <groupId>org.onap.aaf.authz</groupId>\r
+       <!-- No Parent on Purpose!!! -->\r
        <artifactId>authz-client</artifactId>\r
-       <version>1.0.0-SNAPSHOT</version>\r
-       <packaging>jar</packaging>\r
        <name>Authz Client</name>\r
        <description>Client and XSD Generated code for Authz</description>\r
+       <groupId>org.onap.aaf.authz</groupId>\r
+       <version>1.0.1-SNAPSHOT</version>\r
+       <packaging>jar</packaging>\r
        <url>https://github.com/att/AAF</url>\r
-       <licenses>\r
-               <license>\r
-               <name>BSD License</name>\r
-               <url> </url>\r
-               </license>\r
-       </licenses>\r
+\r
        <developers>\r
                <developer>\r
                <name>Jonathan Gathman</name>\r
                </developer>\r
        </developers>\r
        \r
-       <properties>\r
+               <properties>\r
                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>\r
                <swm-distFiles-path>/opt/app/aft/${project.artifactId}/${project.version}</swm-distFiles-path>\r
                <maven.test.failure.ignore>true</maven.test.failure.ignore>\r
                <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>\r
+               <!--  SONAR  -->\r
+                <jacoco.version>0.7.7.201606060606</jacoco.version>\r
+                <sonar.skip>true</sonar.skip>\r
+           <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>\r
+           <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>\r
+           <!-- Default Sonar configuration -->\r
+           <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>\r
+           <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>\r
+           <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->\r
+           <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>\r
         <nexusproxy>https://nexus.onap.org</nexusproxy>\r
                <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>\r
                <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>\r
                <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>\r
-               <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>\r
+               <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>\r
        </properties>\r
        \r
        <dependencies>\r
                                                <schemaDirectory>src/main/xsd</schemaDirectory>\r
                                        </configuration>\r
                                </plugin>\r
-                               <plugin>\r
-                                       <groupId>org.apache.maven.plugins</groupId>\r
-                                       <artifactId>maven-compiler-plugin</artifactId>\r
-                                       <configuration>\r
-                                               <source>1.6</source>\r
-                                               <target>1.6</target>\r
-                                       </configuration>\r
-                               </plugin>\r
-                               <plugin>\r
-                                       <groupId>org.apache.maven.plugins</groupId>\r
-                                       <artifactId>maven-deploy-plugin</artifactId>\r
-                                       <version>2.5</version>\r
-                                       <configuration>\r
-                                               <skip>false</skip>\r
-                                       </configuration>\r
-                               </plugin>\r
 \r
                                <!--This plugin's configuration is used to store Eclipse m2e settings \r
                                        only. It has no influence on the Maven build itself. -->\r
                <plugin>\r
                        <groupId>org.apache.maven.plugins</groupId>\r
                        <artifactId>maven-javadoc-plugin</artifactId>\r
+                       <version>2.10.4</version>\r
                        <configuration>\r
                        <failOnError>false</failOnError>\r
                        </configuration>\r
                        </execution>\r
                      </executions>\r
                    </plugin>\r
-        <plugin>\r
+                       \r
+                        <plugin>\r
                                <groupId>org.sonatype.plugins</groupId>\r
                                <artifactId>nexus-staging-maven-plugin</artifactId>\r
                                <version>1.6.7</version>\r
                                        <stagingProfileId>176c31dfe190a</stagingProfileId>\r
                                        <serverId>ecomp-staging</serverId>\r
                                </configuration>\r
-                       </plugin> \r
+                       </plugin>               \r
+                       <plugin>\r
+          <groupId>org.jacoco</groupId>\r
+          <artifactId>jacoco-maven-plugin</artifactId>\r
+          <version>${jacoco.version}</version>\r
+          <configuration>\r
+            <excludes>\r
+              <exclude>**/gen/**</exclude>\r
+              <exclude>**/generated-sources/**</exclude>\r
+              <exclude>**/yang-gen/**</exclude>\r
+              <exclude>**/pax/**</exclude>\r
+            </excludes>\r
+          </configuration>\r
+          <executions>\r
+\r
+            <execution>\r
+              <id>pre-unit-test</id>\r
+              <goals>\r
+                <goal>prepare-agent</goal>\r
+              </goals>\r
+              <configuration>\r
+                <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>\r
+                <propertyName>surefireArgLine</propertyName>\r
+              </configuration>\r
+            </execution>\r
+            \r
+       \r
+            <execution>\r
+              <id>post-unit-test</id>\r
+              <phase>test</phase>\r
+              <goals>\r
+                <goal>report</goal>\r
+              </goals>\r
+              <configuration>\r
+                <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>\r
+                <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>\r
+              </configuration>\r
+            </execution>\r
+            <execution>\r
+              <id>pre-integration-test</id>\r
+              <phase>pre-integration-test</phase>\r
+              <goals>\r
+                <goal>prepare-agent</goal>\r
+              </goals>\r
+              <configuration>\r
+                <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>\r
+\r
+                <propertyName>failsafeArgLine</propertyName>\r
+              </configuration>\r
+            </execution>\r
+\r
+       \r
+            <execution>\r
+              <id>post-integration-test</id>\r
+              <phase>post-integration-test</phase>\r
+              <goals>\r
+                <goal>report</goal>\r
+              </goals>\r
+              <configuration>\r
+                <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>\r
+                <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>\r
+              </configuration>\r
+            </execution>\r
+          </executions>\r
+        </plugin>      \r
+\r
                        </plugins>\r
        </build>\r
        \r
                        <url>dav:${nexusproxy}${sitePath}</url>\r
                </site>\r
        </distributionManagement>\r
-<pluginRepositories>\r
-        <pluginRepository>\r
-            <id>onap-plugin-snapshots</id>\r
-            <url>https://nexus.onap.org/content/repositories/snapshots/</url>\r
-        </pluginRepository>\r
-    </pluginRepositories>\r
-       \r
-       <repositories>\r
-               <repository>\r
-                       <id>central</id>\r
-                       <name>Maven 2 repository 2</name>\r
-                       <url>http://repo2.maven.org/maven2/</url>\r
-               </repository>\r
-               <repository>\r
-            <id>onap-jar-snapshots</id>\r
-            <url>https://nexus.onap.org/content/repositories/snapshots</url>\r
-        </repository>\r
-               <repository>\r
-                       <id>spring-repo</id>\r
-                       <name>Spring repo</name>\r
-                       <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>\r
-               </repository>\r
-               <repository>\r
-                       <id>repository.jboss.org-public</id>\r
-                       <name>JBoss.org Maven repository</name>\r
-                       <url>https://repository.jboss.org/nexus/content/groups/public</url>\r
-               </repository>\r
-       </repositories>\r
 \r
 </project>\r
 \r