blob: 3faa62c51da55fc418880036f4b392dcfa8a36eb [file] [log] [blame]
waqas.ikram21a47682020-08-20 09:59:05 +01001# Copyright © 2020 Nordix Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14spring:
15 main:
16 allow-bean-definition-overriding: true
17 datasource:
18 hikari:
19 camunda:
20 jdbcUrl: jdbc:h2:mem:example-simple;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
21 driver-class-name: org.h2.Driver
22 pool-name: ns-lcm-bpmn-pool
23 registerMbeans: true
24 nfvo:
25 jdbcUrl: jdbc:h2:mem:nfvo;DB_CLOSE_DELAY=-1;INIT=CREATE SCHEMA IF NOT EXISTS nfvo;
26 driver-class-name: org.h2.Driver
27 pool-name: ns-lcm-bpmn-pool
28 registerMbeans: true
29 jpa:
30 generate-ddl: true
31 hibernate:
32 ddl-auto: create
33hibernate:
34 dialect: org.hibernate.dialect.H2Dialect
35 hbm2ddl:
36 auto: create
37aai:
38 version: v19
39 endpoint: http://localhost:${wiremock.server.port}
40etsi-catalog-manager:
41 base:
42 endpoint: http://modeling-etsicatalog.onap:8806/api
43so-etsi-ns-lcm-workflow-engine:
44 requesttimeout:
45 timeoutInSeconds: 10
46logging:
47 level:
48 org.reflections.Reflections: ERROR