AT&T 2.0.19 Code drop, stage 4
[aaf/authz.git] / authz-client / pom.xml
index f236395..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
+       \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
        <!-- No Parent on Purpose!!! -->\r
        <artifactId>authz-client</artifactId>\r
        <name>Authz Client</name>\r
        <description>Client and XSD Generated code for Authz</description>\r
        <groupId>org.onap.aaf.authz</groupId>\r
-       <version>2.6</version>\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/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
-       \r
+                       \r
+                        <plugin>\r
+                               <groupId>org.sonatype.plugins</groupId>\r
+                               <artifactId>nexus-staging-maven-plugin</artifactId>\r
+                               <version>1.6.7</version>\r
+                               <extensions>true</extensions>\r
+                               <configuration>\r
+                                       <nexusUrl>${nexusproxy}</nexusUrl>\r
+                                       <stagingProfileId>176c31dfe190a</stagingProfileId>\r
+                                       <serverId>ecomp-staging</serverId>\r
+                               </configuration>\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
-       \r
+       <distributionManagement>\r
+               <repository>\r
+                       <id>ecomp-releases</id>\r
+                       <name>AAF Release Repository</name>\r
+                       <url>${nexusproxy}${releaseNexusPath}</url>\r
+               </repository>\r
+               <snapshotRepository>\r
+                       <id>ecomp-snapshots</id>\r
+                       <name>AAF Snapshot Repository</name>\r
+                       <url>${nexusproxy}${snapshotNexusPath}</url>\r
+               </snapshotRepository>\r
+               <site>\r
+                       <id>ecomp-site</id>\r
+                       <url>dav:${nexusproxy}${sitePath}</url>\r
+               </site>\r
+       </distributionManagement>\r
 \r
 </project>\r
 \r