All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zodiac.autoconfigure.flowable.FlowableAutoConfiguration Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version
package org.zodiac.autoconfigure.flowable;

import org.springframework.boot.SpringBootConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.zodiac.flowable.core.constants.ProcessConstants;

@SpringBootConfiguration
@EnableConfigurationProperties(value = {org.flowable.spring.boot.FlowableProperties.class})
@ConditionalOnClass(value = {ProcessConstants.class, org.flowable.engine.ProcessEngine.class, org.flowable.editor.language.json.converter.BpmnJsonConverter.class})
public class FlowableAutoConfiguration {

    public FlowableAutoConfiguration() {
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy