From 7d8bf08398ca8a6f8b32d5b8523fdac16d9461ce Mon Sep 17 00:00:00 2001 From: Vladimir Petko Date: Fri, 4 Oct 2024 20:00:43 +1300 Subject: [PATCH 1/3] fix: rename vcs url --- rockcraft-gradle/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rockcraft-gradle/build.gradle.kts b/rockcraft-gradle/build.gradle.kts index 26ce1e5..9edb2a3 100644 --- a/rockcraft-gradle/build.gradle.kts +++ b/rockcraft-gradle/build.gradle.kts @@ -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") { From d24a2d78a7edb18c18d5a6e3988d01b29313ecc7 Mon Sep 17 00:00:00 2001 From: Vladimir Petko Date: Fri, 4 Oct 2024 20:15:51 +1300 Subject: [PATCH 2/3] fix: badge url --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 87ffc33..0d58f03 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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: @@ -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** @@ -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 From be76190bd8cf0013d8becf199a95056a12382594 Mon Sep 17 00:00:00 2001 From: Vladimir Petko Date: Fri, 4 Oct 2024 20:18:08 +1300 Subject: [PATCH 3/3] fix: security report url --- SECURITY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SECURITY.md b/SECURITY.md index 283b848..5b00b7b 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -2,6 +2,6 @@ ## Reporting a Vulnerability -To report a security issue, file a [Private Security Report](https://github.com/canonical/rockcraft-gradle-plugin/security/advisories/new) with a description of the issue, the steps you took to create the issue, affected versions, and, if known, mitigations for the issue. +To report a security issue, file a [Private Security Report](https://github.com/rockcrafters/java-rockcraft-plugins/security/advisories/new) with a description of the issue, the steps you took to create the issue, affected versions, and, if known, mitigations for the issue. The [Ubuntu Security disclosure and embargo policy](https://ubuntu.com/security/disclosure-policy) contains more information about what you can expect when you contact us and what we expect from you.