feat(REQ-3004) - 调整应用 POM 依赖,移除无关的 jar,避免影响启动

This commit is contained in:
wangli 2024-11-21 14:49:03 +08:00
parent 5ce082a125
commit e07850c5d9

View File

@ -13,9 +13,9 @@ import lombok.extern.slf4j.Slf4j;
import org.apache.commons.collections4.ListUtils;
import org.flowable.bpmn.model.FlowElement;
import org.flowable.engine.delegate.DelegateExecution;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import javax.annotation.Resource;
import java.util.List;
import java.util.Objects;
import java.util.stream.Collectors;
@ -32,7 +32,7 @@ import static cn.axzo.workflow.common.constant.BpmnConstants.INTERNAL_INITIATOR;
@Component
public class BasedInitiatorLeaderTaskAssigneeSelector extends AbstractBpmnTaskAssigneeSelector {
@Autowired
@Resource
private OrganizationalNodeUserApi organizationalNodeUserApi;
@Override