Merge "[CLIENT] Change certService client to use comma as SANS delimiter"
authorBogumil Zebek <bogumil.zebek@nokia.com>
Wed, 18 Nov 2020 10:18:51 +0000 (10:18 +0000)
committerGerrit Code Review <gerrit@onap.org>
Wed, 18 Nov 2020 10:18:51 +0000 (10:18 +0000)
1  2 
certServiceK8sExternalProvider/pom.xml

@@@ -5,7 -5,7 +5,7 @@@
    <parent>
      <artifactId>oom-certservice</artifactId>
      <groupId>org.onap.oom.platform.cert-service</groupId>
-     <version>2.2.0-SNAPSHOT</version>
+     <version>2.3.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
  
    <properties>
      <version.mvn-clean-plugin>3.1.0</version.mvn-clean-plugin>
      <version.mvn-golang-wrapper-plugin>2.3.5</version.mvn-golang-wrapper-plugin>
 +    <sonar.go.coverage.reportPaths>bin/coverage.out</sonar.go.coverage.reportPaths>
 +    <sonar.exclusions>**/*_test.go, **/testdata/*</sonar.exclusions>
 +    <sonar-go-plugin.version>1.1.1.2000</sonar-go-plugin.version>
    </properties>
  
 +
 +  <dependencies>
 +    <dependency>
 +      <groupId>org.sonarsource.go</groupId>
 +      <artifactId>sonar-go-plugin</artifactId>
 +      <version>${sonar-go-plugin.version}</version>
 +    </dependency>
 +  </dependencies>
 +
    <build>
      <!--Changing standard Maven project source structure to make it Go compatible-->
      <sourceDirectory>${basedir}</sourceDirectory>
          <version>${version.mvn-golang-wrapper-plugin}</version>
          <extensions>true</extensions>
          <executions>
 +          <execution>
 +            <id>coverage</id>
 +            <goals>
 +              <goal>test</goal>
 +            </goals>
 +            <configuration>
 +              <testFlags>
 +                <flag>-coverprofile=bin/coverage.out</flag>
 +              </testFlags>
 +            </configuration>
 +          </execution>
            <execution>
              <id>install</id>
              <goals>