Skip to content

Commit

Permalink
Use cd.go.plugin.base:gocd-plugin-base:0.0.1 instead of `com.github…
Browse files Browse the repository at this point in the history
….bdpiparva.plugin.base:gocd-plugin-base:0.0.5`
  • Loading branch information
ketan committed Jul 12, 2019
1 parent 669ce3a commit fd79955
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion gocd-file-based-secrets-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ configurations {
}

dependencies {
compile group: 'com.github.bdpiparva.plugin.base', name: 'gocd-plugin-base', version: '0.0.5'
compile group: 'cd.go.plugin.base', name: 'gocd-plugin-base', version: '0.0.1'
compileOnly group: 'cd.go.plugin', name: 'go-plugin-api', version: '18.9.0'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
compile project(':db')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@

package cd.go.plugin.secret.filebased;

import cd.go.plugin.base.dispatcher.BaseBuilder;
import cd.go.plugin.base.dispatcher.RequestDispatcher;
import cd.go.plugin.secret.filebased.executors.LookupSecretsRequestExecutor;
import cd.go.plugin.secret.filebased.model.SecretsConfiguration;
import com.github.bdpiparva.plugin.base.dispatcher.BaseBuilder;
import com.github.bdpiparva.plugin.base.dispatcher.RequestDispatcher;
import com.thoughtworks.go.plugin.api.GoApplicationAccessor;
import com.thoughtworks.go.plugin.api.GoPlugin;
import com.thoughtworks.go.plugin.api.GoPluginIdentifier;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

package cd.go.plugin.secret.filebased;

import com.github.bdpiparva.plugin.base.validation.ValidationResult;
import com.github.bdpiparva.plugin.base.validation.Validator;
import cd.go.plugin.base.validation.ValidationResult;
import cd.go.plugin.base.validation.Validator;
import org.apache.commons.lang3.StringUtils;

import java.io.File;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@

package cd.go.plugin.secret.filebased.executors;

import cd.go.plugin.base.executors.secrets.LookupExecutor;
import cd.go.plugin.secret.filebased.db.BadSecretException;
import cd.go.plugin.secret.filebased.db.SecretsDatabase;
import cd.go.plugin.secret.filebased.model.LookupSecretRequest;
import com.github.bdpiparva.plugin.base.executors.secrets.LookupExecutor;
import com.thoughtworks.go.plugin.api.response.DefaultGoPluginApiResponse;
import com.thoughtworks.go.plugin.api.response.GoPluginApiResponse;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

package cd.go.plugin.secret.filebased.model;

import com.github.bdpiparva.plugin.base.annotations.Property;
import cd.go.plugin.base.annotations.Property;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.annotations.Expose;
Expand Down

0 comments on commit fd79955

Please sign in to comment.