Skip to content

Commit

Permalink
Changed group id to get past gradle plugin certification.
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelgbanks committed Jul 8, 2021
1 parent 2365288 commit e045807
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ the `settings.gradle.kts` file that allows the plugin source to be discoverable:
```kotlin
sourceControl {
gitRepository(uri("https://github.com/Islandora-Devops/isle-gradle-docker-plugin.git")) {
producesModule("ca.islandora:isle-gradle-docker-plugin")
producesModule("org.github.nigelgbanks:isle-gradle-docker-plugin")
}
}
```
Expand All @@ -142,10 +142,10 @@ buildscript {
gradlePluginPortal()
}
dependencies {
classpath("ca.islandora:isle-gradle-docker-plugin:0.0.1")
classpath("org.github.nigelgbanks:isle-gradle-docker-plugin:0.0.6")
}
}
apply(plugin = "ca.islandora.gradle.docker")
apply(plugin = "IsleDocker")
```

[Buildkit]: https://github.com/moby/buildkit/blob/main/frontend/dockerfile/docs/experimental.md
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version = "0.5"
group = "ca.islandora"
version = "0.6"
group = "org.github.nigelgbanks"

plugins {
id("com.gradle.plugin-publish") version "0.15.0"
Expand Down Expand Up @@ -42,7 +42,7 @@ gradlePlugin {
// The configuration example below shows the minimum required properties
// configured to publish your plugin to the plugin portal
pluginBundle {
website = "https://islandora.ca"
website = "https://github.com/Islandora-Devops/isle-gradle-docker-plugin"
vcsUrl = "https://github.com/Islandora-Devops/isle-gradle-docker-plugin"
description = "Gradle plugin that supports building interdependent Docker images with Buildkit support for the Isle project."
tags = listOf("isle", "islandora", "docker")
Expand All @@ -52,7 +52,7 @@ pluginBundle {
}
}
mavenCoordinates {
groupId = "ca.islandora"
groupId = "org.github.nigelgbanks"
artifactId = "isle-docker-plugins"
version = "0.6"
}
Expand Down

0 comments on commit e045807

Please sign in to comment.