Skip to content

Commit

Permalink
Merge pull request #41 from rob2universe/c8-demo-setup
Browse files Browse the repository at this point in the history
Fixed deprecated SpringBoot client usage
  • Loading branch information
rob2universe authored Sep 13, 2023
2 parents 2d2fba3 + f21dcfa commit e21c7f3
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
package com.camunda.demo.customeronboarding;

import io.camunda.zeebe.spring.client.EnableZeebeClient;
import io.camunda.zeebe.spring.client.annotation.ZeebeDeployment;
import io.camunda.zeebe.spring.client.annotation.Deployment;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
@EnableZeebeClient
@ZeebeDeployment(resources = {"static/bpmn/customer_onboarding_en.bpmn", "static/bpmn/document_request_en.bpmn", "static/bpmn/risk_check_en.dmn"})
@Deployment(resources = {"static/bpmn/customer_onboarding_en.bpmn", "static/bpmn/document_request_en.bpmn", "static/bpmn/risk_check_en.dmn"})
public class CustomerOnboardingProcessApplication {

public static void main(String[] args) {
Expand Down

0 comments on commit e21c7f3

Please sign in to comment.