Skip to content

Commit

Permalink
fix(plugin-jdbc-as400): wrong package name
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Apr 15, 2024
1 parent 4a962f2 commit a92b1c1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.kestra.plugin.jdbc.db2;
package io.kestra.plugin.jdbc.as400;

import io.kestra.plugin.jdbc.AbstractCellConverter;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.kestra.plugin.jdbc.db2;
package io.kestra.plugin.jdbc.as400;

import io.kestra.core.models.annotations.Example;
import io.kestra.core.models.annotations.Plugin;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.kestra.plugin.jdbc.db2;
package io.kestra.plugin.jdbc.as400;

import io.kestra.core.models.annotations.Example;
import io.kestra.core.models.annotations.Plugin;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
description = "This sub-group of plugins contains tasks for accessing the AS400 database.",
categories = PluginSubGroup.PluginCategory.DATABASE
)
package io.kestra.plugin.jdbc.db2;
package io.kestra.plugin.jdbc.as400;

import io.kestra.core.models.annotations.PluginSubGroup;
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.kestra.plugin.jdbc.db2;
package io.kestra.plugin.jdbc.as400;

import io.kestra.plugin.jdbc.AbstractJdbcDriverTest;
import io.micronaut.test.extensions.junit5.annotation.MicronautTest;
Expand Down

0 comments on commit a92b1c1

Please sign in to comment.