Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: rename vcs url in plugin description #4

Merged
merged 3 commits into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Builds [Ubuntu ROCK](https://documentation.ubuntu.com/rockcraft/en/latest/explanation/rocks/) image for your application.
The plugin requires [rockcraft](https://github/canonical/rockcraft) installed.

![Github Actions](https://github.com/canonical/rockcraft-gradle-plugin/actions/workflows/build.yml/badge.svg)
![Github Actions](https://github.com/rockcrafters/java-rockcraft-plugins/actions/workflows/build.yml/badge.svg)
[![GNU GPLv3 license](https://img.shields.io/badge/license-GPLv3-blue)](https://www.gnu.org/licenses/gpl-3.0.html#license-text)

# Getting started
Expand All @@ -19,13 +19,13 @@ To use the plugin, apply the following two steps:
**Groovy**

plugins {
id 'com.canonical.rockcraft' version '0.1.1'
id 'io.rockcrafters.rockcraft' version '0.1.1'
}

**Kotlin**

plugins {
id("com.canonical.rockcraft") version "0.1.1"
id("io.rockcrafters.rockcraft") version "0.1.1"
}

##### Alternatively, you can use the `buildscript` DSL:
Expand All @@ -39,10 +39,10 @@ To use the plugin, apply the following two steps:
}
}
dependencies {
classpath 'com.canonical.rockcraft:0..1'
classpath 'io.rockcrafters.rockcraft:0.1.1'
}
}
apply plugin: 'com.canonical.rockcraft-plugin'
apply plugin: 'io.rockcrafters.rockcraft-plugin'

**Kotlin**

Expand All @@ -53,10 +53,10 @@ To use the plugin, apply the following two steps:
}
}
dependencies {
classpath("com.canonical.rockcraft:0.1.1")
classpath("io.rockcrafters.rockcraft:0.1.1")
}
}
apply(plugin = "com.canonical.rockcraft")
apply(plugin = "io.rockcrafters.rockcraft")

### 2. Configure ROCK container

Expand Down
4 changes: 2 additions & 2 deletions rockcraft-gradle/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ dependencies {
}

gradlePlugin {
website = "https://github.com/canonical/rockcraft-gradle-plugin"
vcsUrl = "https://github.com/canonical/rockcraft-gradle-plugin"
website = "https://github.com/rockcrafters/java-rockcraft-plugins"
vcsUrl = "https://github.com/rockcrafters/java-rockcraft-plugins"

plugins {
create("rockcraftPlugin") {
Expand Down