Skip to content

Commit

Permalink
refactor: change group and id
Browse files Browse the repository at this point in the history
  • Loading branch information
e.rudikov committed Jan 24, 2024
1 parent 39df3e8 commit ab4b965
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Features:
build.gradle.kts:
```
plugins {
id("io.github.rudikov.avroschema-wizard-plugin") version <version>
id("io.github.rudikone.avroschema-wizard-plugin") version <version>
}
avroWizardConfig {
Expand Down
2 changes: 1 addition & 1 deletion example/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
java
id("io.github.rudikov.avroschema-wizard-plugin")
id("io.github.rudikone.avroschema-wizard-plugin")
}

avroWizardConfig {
Expand Down
8 changes: 4 additions & 4 deletions plugin-build/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
ID=io.github.rudikov.avroschema-wizard-plugin
VERSION=1.0.3
GROUP=io.github.rudikov
ID=io.github.rudikone.avroschema-wizard-plugin
VERSION=1.0.4
GROUP=io.github.rudikone
DISPLAY_NAME=Avro Schema Wizard Gradle Plugin
DESCRIPTION=Gradle Plugin for working with Avro schemas in Schema Registry
WEBSITE=https://github.com/rudikone/avroschema-wizard-plugin
VCS_URL=https://github.com/rudikone/avroschema-wizard-plugin
IMPLEMENTATION_CLASS=io.github.rudikov.plugin.AvroSchemaWizardPlugin
IMPLEMENTATION_CLASS=io.github.rudikone.plugin.AvroSchemaWizardPlugin
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.rudikov.plugin
package io.github.rudikone.plugin

import org.gradle.api.Plugin
import org.gradle.api.Project
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.rudikov.plugin
package io.github.rudikone.plugin

import org.gradle.api.Project
import org.gradle.api.provider.MapProperty
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.rudikov.plugin
package io.github.rudikone.plugin

import io.confluent.kafka.schemaregistry.avro.AvroSchema
import io.confluent.kafka.schemaregistry.client.CachedSchemaRegistryClient
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.rudikov.plugin
package io.github.rudikone.plugin

import io.confluent.kafka.schemaregistry.avro.AvroSchema
import io.confluent.kafka.schemaregistry.client.CachedSchemaRegistryClient
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.rudikov.plugin
package io.github.rudikone.plugin

import java.nio.file.Files
import java.nio.file.Paths
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.rudikov.plugin
package io.github.rudikone.plugin

import org.gradle.testfixtures.ProjectBuilder
import org.junit.Assert.assertEquals
Expand Down Expand Up @@ -102,6 +102,6 @@ class AvroSchemaWizardPluginTest {
}

companion object {
private const val PLUGIN_ID = "io.github.rudikov.avroschema-wizard-plugin"
private const val PLUGIN_ID = "io.github.rudikone.avroschema-wizard-plugin"
}
}

0 comments on commit ab4b965

Please sign in to comment.