Skip to content

Commit

Permalink
feat: move plugin-script to core script lib
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Apr 30, 2024
1 parent a7c4592 commit 64f0440
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dependencies {
// Kestra
annotationProcessor group: "io.kestra", name: "processor", version: kestraVersion
compileOnly group: "io.kestra", name: "core", version: kestraVersion
implementation group: "io.kestra.plugin", name: "plugin-script", version: kestraVersion
compileOnly group: "io.kestra", name: "script", version: kestraVersion

// Logs
compileOnly'org.slf4j:slf4j-api:2.0.13'
Expand Down Expand Up @@ -79,6 +79,7 @@ dependencies {
// test deps needed only for to have a runner
testAnnotationProcessor group: "io.kestra", name: "processor", version: kestraVersion
testImplementation group: "io.kestra", name: "core", version: kestraVersion
testImplementation group: "io.kestra", name: "script", version: kestraVersion
testImplementation group: "io.kestra", name: "repository-memory", version: kestraVersion
testImplementation group: "io.kestra", name: "runner-memory", version: kestraVersion
testImplementation group: "io.kestra", name: "storage-local", version: kestraVersion
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/kestra/plugin/soda/AbstractSoda.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
import io.kestra.core.exceptions.IllegalVariableEvaluationException;
import io.kestra.core.models.annotations.PluginProperty;
import io.kestra.core.models.tasks.Task;
import io.kestra.core.models.tasks.runners.ScriptService;
import io.kestra.core.runners.RunContext;
import io.kestra.core.serializers.JacksonMapper;
import io.kestra.core.tasks.PluginUtilsService;
import io.kestra.plugin.scripts.exec.scripts.models.DockerOptions;
import io.kestra.plugin.scripts.exec.scripts.models.RunnerType;
import io.kestra.plugin.scripts.exec.scripts.runners.CommandsWrapper;
import io.kestra.plugin.scripts.exec.scripts.services.ScriptService;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Builder;
import lombok.EqualsAndHashCode;
Expand Down

0 comments on commit 64f0440

Please sign in to comment.