Skip to content

Commit

Permalink
Clean up initial files
Browse files Browse the repository at this point in the history
  • Loading branch information
dmikurube committed Nov 30, 2023
1 parent 9b4cd14 commit efb6a08
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 41 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ gradlePlugin {
id = "org.embulk.runset"
displayName = "A Gradle plugin to prepare an environment for running Embulk"
description = "${project.description}"
implementationClass = "org.embulk.gradle.runset.RunsetPlugin"
implementationClass = "org.embulk.gradle.runset.EmbulkRunSetPlugin"
tags = ["embulk"]
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,10 @@
import org.gradle.api.Project;

/**
* A Gradle plugin to prepare an environment for running Embulk.
* A Gradle plugin to set up an environment for running Embulk.
*/
public class RunsetPlugin implements Plugin<Project> {
public class EmbulkRunSetPlugin implements Plugin<Project> {
@Override
public void apply(final Project project) {
project.getExtensions().create(
"embulkRunset",
EmbulkRunsetExtension.class,
project);
}
}
33 changes: 0 additions & 33 deletions src/main/java/org/embulk/gradle/runset/EmbulkRunsetExtension.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.io.TempDir;

public class TestRunsetPlugin {
public class TestEmbulkRunSetPlugin {
@Test
public void test(@TempDir Path tempDir) throws IOException {
assertEquals(true, true);
Expand Down

0 comments on commit efb6a08

Please sign in to comment.