44 lines
1.4 KiB
Properties
44 lines
1.4 KiB
Properties
#
|
|
# Copyright (c) 2015 Bosch Software Innovations GmbH and others.
|
|
#
|
|
# All rights reserved. This program and the accompanying materials
|
|
# are made available under the terms of the Eclipse Public License v1.0
|
|
# which accompanies this distribution, and is available at
|
|
# http://www.eclipse.org/legal/epl-v10.html
|
|
#
|
|
|
|
# JPA / Datasource
|
|
spring.jpa.eclipselink.eclipselink.weaving=false
|
|
spring.jpa.database=H2
|
|
spring.jpa.show-sql=false
|
|
spring.datasource.driverClassName=org.h2.Driver
|
|
|
|
# MongoDB for artifact-repository
|
|
spring.data.mongodb.uri=mongodb://localhost/artifactrepo
|
|
|
|
# Flyway DDL
|
|
flyway.enabled=true
|
|
flyway.initOnMigrate=true
|
|
flyway.sqlMigrationSuffix=${spring.jpa.database}.sql
|
|
|
|
# Vaadin Servlet
|
|
vaadin.servlet.productionMode=true
|
|
vaadin.servlet.urlMapping=/UI/*
|
|
vaadin.servlet.heartbeatInterval=60
|
|
vaadin.servlet.closeIdleSessions=false
|
|
|
|
# Defines the thread pool executor
|
|
hawkbit.threadpool.corethreads=5
|
|
hawkbit.threadpool.maxthreads=20
|
|
hawkbit.threadpool.idletimeout=10000
|
|
hawkbit.threadpool.queuesize=20000
|
|
|
|
# Defines the polling time for the controllers in HH:MM:SS notation
|
|
hawkbit.controller.pollingTime=00:05:00
|
|
hawkbit.controller.pollingOverdueTime=00:05:00
|
|
|
|
## Configuration for RabbitMQ integration
|
|
hawkbit.dmf.rabbitmq.deadLetterQueue=dmf_connector_deadletter
|
|
hawkbit.dmf.rabbitmq.deadLetterExchange=dmf.connector.deadletter
|
|
hawkbit.dmf.rabbitmq.receiverQueue=dmf_receiver
|