Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -120,14 +120,14 @@ gradlePlugin {
// it into useful dependency/project relations. This will then substitute out the selected dependencies
// for the local projects provided in the configuration.
create("Compositor") {
id = "$group.compositor"
id = "$namespace.compositor"
implementationClass = "$group.Compositor"
}
// This plugin handles generating the gradle tasks for creating/deleting or enabling/disabling the
// composites file. It should not be applied manually, and should instead be auto-loaded in via
// the settings plugin provided above.
create("Compositor-Project-Auto") {
id = "$group.compositor-project-auto"
id = "$namespace.compositor-project-auto"
implementationClass = "$group.CompositorProjectAuto"
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/xyz/atrius/Compositor.kt
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ class Compositor : Plugin<Settings> {
}

private fun Settings.applyProjectPlugin() = gradle.beforeProject {
it.pluginManager.apply("xyz.atrius.compositor-project-auto")
it.pluginManager.apply("io.github.atriusx.compositor-project-auto")
}
}