8/23: merge casablanca to master 96/71096/1
authorRob Daugherty <rd472p@att.com>
Tue, 23 Oct 2018 18:08:57 +0000 (14:08 -0400)
committerRob Daugherty <rd472p@att.com>
Tue, 23 Oct 2018 20:18:55 +0000 (16:18 -0400)
Change-Id: I0a73fbedf8c6f22e0a37cd8f0505ddcf83250341
Issue-ID: SO-1160
Signed-off-by: Rob Daugherty <rd472p@att.com>
1  2 
bpmn/mso-infrastructure-bpmn/src/main/resources/application-local.yml
common/pom.xml

@@@ -4,7 -4,6 +4,7 @@@ aai
      timeout: '30000'
    endpoint: http://localhost:8443
    workflowAaiDistributionDelay: PT30S
 +  pnfEntryNotificationTimeout: P14D
  camunda:
    bpm:
      admin-user:
        core-pool-size: 3
  entitymanager:
    packagesToScan: com
 -
 +pnf:
 +  dmaap:
 +    host: message-router
 +    port: 3904
 +    protocol: http
 +    uriPathPrefix: events
 +    topicName: pnfReady
 +    consumerGroup: consumerGroup
 +    consumerId: consumerId
 +    topicListenerDelayInSeconds: 5
  mso:
    correlation:
      timeout: 60
            route-table-reference:
              uri: /aai/v11/network/route-table-references/route-table-reference
            tenant:
-             uri: /aai/v11/cloud-infrastructure/cloud-regions/cloud-region/att-aic/AAIAIC25/tenants/tenant
+             uri: /aai/v11/cloud-infrastructure/cloud-regions/cloud-region/CloudOwner/AAIAIC25/tenants/tenant
            vce:
              uri: /aai/v11/network/vces/vce
            vpn-binding:
            route-table-reference:
              uri: /aai/v8/network/route-table-references/route-table-reference
            tenant:
-             uri: /aai/v8/cloud-infrastructure/cloud-regions/cloud-region/att-aic/AAIAIC25/tenants/tenant
+             uri: /aai/v8/cloud-infrastructure/cloud-regions/cloud-region/CloudOwner/AAIAIC25/tenants/tenant
            vce:
              uri: /aai/v8/network/vces/vce
            vpn-binding:
              uri: /aai/v8/network/vpn-bindings/vpn-binding
          v9:
            cloud-region:
-             uri: /aai/v9/cloud-infrastructure/cloud-regions/cloud-region/att-aic
+             uri: /aai/v9/cloud-infrastructure/cloud-regions/cloud-region/CloudOwner
            generic-vnf:
              uri: /aai/v9/network/generic-vnfs/generic-vnf
        retry:
diff --combined common/pom.xml
@@@ -4,7 -4,7 +4,7 @@@
        <parent>
          <groupId>org.onap.so</groupId>
          <artifactId>so</artifactId>
 -        <version>1.3.0-SNAPSHOT</version>
 +        <version>1.4.0-SNAPSHOT</version>
        </parent>
        <artifactId>common</artifactId>
        <name>MSO Common classes</name>
                        <artifactId>logging-slf4j</artifactId>
                        <version>1.2.2</version>
                </dependency>
+               <dependency>
+                       <groupId>org.springframework.boot</groupId>
+                       <artifactId>spring-boot-starter-test</artifactId>
+                       <scope>test</scope>
+               </dependency>
      </dependencies>
        <build>
                <resources>
                                        <include>**/*.java</include>
                                </includes>
                        </resource>
-               </resources>            
+               </resources>
+               <plugins>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-surefire-plugin</artifactId>
+                               <executions>
+                                       <execution>
+                                               <id>default-test</id>
+                                               <goals>
+                                                       <goal>test</goal>
+                                               </goals>
+                                               <configuration>
+                                                       <includes>
+                                                               <include>**/NonSpringSuite.java</include>
+                                                       </includes>     
+                                               </configuration>
+                                       </execution>
+                                       <execution>
+                                               <id>spring-tests</id>
+                                               <goals>
+                                                       <goal>test</goal>
+                                               </goals>
+                                               <configuration>
+                                                       <includes>
+                                                               <include>**/SpringSuite.java</include>
+                                                       </includes>     
+                                               </configuration>
+                                       </execution>
+                               </executions>
+                       </plugin>
+               </plugins>      
        </build>
  </project>