org.zodiac.autoconfigure.flowable.FlowableAutoConfiguration Maven / Gradle / Ivy
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() {
}
}