Skip to content

Commit

Permalink
Merge pull request #1 from conductor-sdk/upgrade-client-v4
Browse files Browse the repository at this point in the history
Upgrade to client v4
  • Loading branch information
jmigueprieto authored Oct 9, 2024
2 parents 41c58e6 + 881eae2 commit bc98515
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@

<dependency>
<groupId>io.orkes.conductor</groupId>
<artifactId>orkes-conductor-client</artifactId>
<version>2.0.3</version>
<artifactId>orkes-conductor-client-spring</artifactId>
<version>4.0.0</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

@AllArgsConstructor
@SpringBootApplication
@ComponentScan(basePackages = {"io.orkes"})
@ComponentScan(basePackages = {"io.orkes", "com.netflix.conductor"})
public class BankingApplication {

public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
package io.orkes.demo.banking.service;

import com.netflix.conductor.client.http.WorkflowClient;
import com.netflix.conductor.common.metadata.workflow.StartWorkflowRequest;
import io.orkes.conductor.client.WorkflowClient;

import io.orkes.demo.banking.pojos.DepositDetail;
import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j;
Expand Down

0 comments on commit bc98515

Please sign in to comment.