Upversion search-data-service in master
[aai/search-data-service.git] / search-data-service-app / pom.xml
index 8c93f92..9fd750c 100644 (file)
        <modelVersion>4.0.0</modelVersion>
 
        <parent>
-               <artifactId>spring-boot-starter-parent</artifactId>
-               <groupId>org.springframework.boot</groupId>
-               <version>1.5.20.RELEASE</version>
+               <artifactId>search-data-service</artifactId>
+               <groupId>org.onap.aai</groupId>
+               <version>1.6.0-SNAPSHOT</version>
        </parent>
 
        <groupId>org.onap.aai.search-data-service</groupId>
        <artifactId>search-data-service-app</artifactId>
-       <version>1.4.2-SNAPSHOT</version>
+       <version>1.6.0-SNAPSHOT</version>
        <name>AAI Search Data Service Application</name>
 
        <properties>
                <sonar.jacoco.reportMissing.force.zero>false</sonar.jacoco.reportMissing.force.zero>
                <sonar.projectVersion>${project.version}</sonar.projectVersion>
                <jacoco.line.coverage.limit>0.58</jacoco.line.coverage.limit>
+               <spring.boot.version>1.5.21.RELEASE</spring.boot.version>
        </properties>
-
+       
+       <dependencyManagement>
+          <dependencies>
+            <dependency>
+              <groupId>org.springframework.boot</groupId>
+              <artifactId>spring-boot-starter-parent</artifactId>
+              <version>${spring.boot.version}</version>
+              <type>pom</type>
+              <scope>import</scope>
+            </dependency>
+          </dependencies>
+       </dependencyManagement>
+       
        <dependencies>
 
                <dependency>
                <dependency>
                        <groupId>org.onap.aai.logging-service</groupId>
                        <artifactId>common-logging</artifactId>
-                       <version>1.2.2</version>
+                       <version>1.5.0</version>
                </dependency>
 
                <dependency>
                        <groupId>org.onap.aai.logging-service</groupId>
                        <artifactId>logging-api</artifactId>
-                       <version>1.2.2</version>
+                       <version>1.5.0</version>
                </dependency>
 
                <dependency>
                        <groupId>org.onap.aai.logging-service</groupId>
                        <artifactId>eelf-logging</artifactId>
-                       <version>1.2.2</version>
+                       <version>1.5.0</version>
                </dependency>
 
         <!-- For JSON Mapping Support. -->
                                        <forceTags>true</forceTags>
                                </configuration>
                        </plugin>
-                       <plugin>
-                               <groupId>org.sonatype.plugins</groupId>
-                               <artifactId>nexus-staging-maven-plugin</artifactId>
-                               <version>1.6.7</version>
-                               <extensions>true</extensions>
-                               <configuration>
-                                       <nexusUrl>${nexusproxy}</nexusUrl>
-                                       <stagingProfileId>176c31dfe190a</stagingProfileId>
-                                       <serverId>ecomp-staging</serverId>
-                               </configuration>
-                       </plugin>
-
             <!-- This plugin is used to generate Java POJO's from json format schema
                 file. -->
                        <plugin>
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-deploy-plugin</artifactId>
-                               <version>2.8.2</version>
-                               <executions>
-                                       <execution>
-                                               <id>default-deploy</id>
-                                               <phase>none</phase>
-                                       </execution>
-                               </executions>
                        </plugin>
                        <plugin>
                                <groupId>org.codehaus.mojo</groupId>
                                <artifactId>sonar-maven-plugin</artifactId>
                                <version>3.2</version>
                        </plugin>
+                        <!-- jacoco-maven-plugin provides the basic report creation during unit testing, such as code-coverage, sonar, etc. -->
                        <plugin>
                                <groupId>org.jacoco</groupId>
                                <artifactId>jacoco-maven-plugin</artifactId>
-                               <version>0.7.7.201606060606</version>
-                               <configuration>
-                                       <dumpOnExit>true</dumpOnExit>
-                               </configuration>
                                <executions>
+                                       <!-- Prepares the property pointing to the JaCoCo runtime agent which
+                                                is passed as VM argument when Maven the Surefire plugin is executed. -->
+                                       <execution>
+                                               <id>pre-unit-test</id>
+                                               <goals>
+                                                       <goal>prepare-agent</goal>
+                                               </goals>
+                                               <configuration>
+                                                       <!-- Sets the path to the file which contains the execution data. -->
+                                                       <destFile>${sonar.jacoco.reportPath}</destFile>
+                                                       <propertyName>surefireArgLine</propertyName>
+                                               </configuration>
+                                       </execution>
+                                       <!-- Ensures that the code coverage report for unit tests is created
+                                                after unit tests have been run. -->
+                                       <execution>
+                                               <id>post-unit-test</id>
+                                               <phase>test</phase>
+                                               <goals>
+                                                       <goal>report</goal>
+                                               </goals>
+                                               <configuration>
+                                                       <!-- Sets the path to the file which contains the execution data. -->
+                                                       <dataFile>${sonar.jacoco.reportPath}</dataFile>
+                                                       <!-- Sets the output directory for the code coverage report. -->
+                                                       <outputDirectory>${jacoco.path}</outputDirectory>
+                                               </configuration>
+                                       </execution>
+                                       <!-- Prepares the property pointing to the JaCoCo runtime agent which
+                                                is passed as VM argument when Maven the Failsafe plugin is executed. -->
                                        <execution>
-                                               <id>jacoco-initialize-unit-tests</id>
+                                               <id>pre-integration-test</id>
+                                               <phase>pre-integration-test</phase>
                                                <goals>
                                                        <goal>prepare-agent</goal>
                                                </goals>
                                                <configuration>
-                                                       <destFile>${project.build.directory}/coverage-reports/jacoco.exec
-                                                       </destFile>
-                            <!-- <append>true</append> -->
+                                                       <!-- Sets the path to the file which contains the execution data. -->
+                                                       <destFile>${sonar.jacoco.itReportPath}</destFile>
+                                                       <!-- Sets the name of the property containing the settings for JaCoCo
+                                                                runtime agent. -->
+                                                       <propertyName>failsafeArgLine</propertyName>
+                                               </configuration>
+                                       </execution>
+                                       <!-- Ensures that the code coverage report for integration tests after
+                                                integration tests have been run. -->
+                                       <execution>
+                                               <id>post-integration-test</id>
+                                               <phase>post-integration-test</phase>
+                                               <goals>
+                                                       <goal>report</goal>
+                                               </goals>
+                                               <configuration>
+                                                       <!-- Sets the path to the file which contains the execution data. -->
+                                                       <dataFile>${sonar.jacoco.itReportPath}/</dataFile>
+                                                       <!-- Sets the output directory for the code coverage report. -->
+                                                       <outputDirectory>${jacoco.itPath}</outputDirectory>
                                                </configuration>
                                        </execution>
                                        <execution>
                                                <configuration>
                                                        <dataFile>${project.build.directory}/coverage-reports/jacoco.exec</dataFile>
                                                        <rules>
-                                <!--  implementation is needed only for Maven 2  -->
+                                                               <!--  implementation is needed only for Maven 2  -->
                                                                <rule implementation="org.jacoco.maven.RuleConfiguration">
                                                                        <element>BUNDLE</element>
                                                                        <limits>
                                        </execution>
                                </executions>
                        </plugin>
-
             <!-- This plugin adds the generated sources directory to the clean lifecycle
                 so that automatically generated code will get cleaned up properly. -->
                        <plugin>