diff --git a/README.md b/README.md index cc7e3b64..2e5110c7 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,9 @@ -[![Maven Central](https://img.shields.io/static/v1?label=MavenCentral&message=2.5.0-rc-2&color=blue)](https://search.maven.org/artifact/de.skuzzle.enforcer/restrict-imports-enforcer-rule/2.5.0-rc-2/jar) +[![Maven Central](https://img.shields.io/static/v1?label=MavenCentral&message=2.5.0&color=blue)](https://search.maven.org/artifact/de.skuzzle.enforcer/restrict-imports-enforcer-rule/2.5.0/jar) +![Gradle Plugin Portal](https://img.shields.io/gradle-plugin-portal/v/de.skuzzle.restrictimports?versionSuffix=2.5.0) [![Coverage Status](https://coveralls.io/repos/github/skuzzle/restrict-imports-enforcer-rule/badge.svg?branch=master)](https://coveralls.io/github/skuzzle/restrict-imports-enforcer-rule?branch=master) -[![Twitter Follow](https://img.shields.io/twitter/follow/skuzzleOSS.svg?style=social)](https://twitter.com/skuzzleOSS) +[![Twitter Follow](https://img.shields.io/twitter/follow/skuzzleOSS.svg?style=social)](https://twitter.com/ProjectPolly) # restrict-imports-enforcer-rule Keep your code base clean and free from usage of unwanted classes! [More](#rationale) @@ -16,7 +17,7 @@ Supported source files: Compatibility: - Works with Java 8+ -- Tested against _maven-enforcer-plugin_ versions `1.4.1` and `3.4.0`. +- Tested against _maven-enforcer-plugin_ versions `1.4.1` and `3.4.1`. ## Maven quick start This is a minimal usage example. Please scroll down for detailed configuration @@ -26,12 +27,12 @@ information or have a look at the [Full configuration example](#full-configurati org.apache.maven.plugins maven-enforcer-plugin - 3.4.0 + 3.4.1 de.skuzzle.enforcer restrict-imports-enforcer-rule - 2.5.0-rc-2 + 2.5.0 @@ -69,7 +70,7 @@ information or have a look at the [Full configuration example](#full-configurati ### ... with Groovy DSL ``` plugins { - id("de.skuzzle.restrict.imports") version("@2.5.0-rc-2@") + id("de.skuzzle.restrict.imports") version("2.5.0") } restrictImports { @@ -81,7 +82,7 @@ restrictImports { ### ... with Kotlin DSL ``` plugins { - id("de.skuzzle.restrict.imports") version("@2.5.0-rc-2@") + id("de.skuzzle.restrict.imports") version("2.5.0") } restrictImports { diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 343962e2..f0aebf5b 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,4 +1,5 @@ -[![Maven Central](https://img.shields.io/static/v1?label=MavenCentral&message=2.5.0-rc-2&color=blue)](https://search.maven.org/artifact/de.skuzzle.enforcer/restrict-imports-enforcer-rule/2.5.0-rc-2/jar) +[![Maven Central](https://img.shields.io/static/v1?label=MavenCentral&message=2.5.0&color=blue)](https://search.maven.org/artifact/de.skuzzle.enforcer/restrict-imports-enforcer-rule/2.5.0/jar) +![Gradle Plugin Portal](https://img.shields.io/gradle-plugin-portal/v/de.skuzzle.restrictimports?versionSuffix=2.5.0) > [!NOTE] > This is the first release after migrating our build to Gradle and which uses shaded dependencies. @@ -9,21 +10,19 @@ * [#59](https://github.com/skuzzle/restrict-imports-enforcer-rule/issues/59) Provide a Gradle plugin * [#118](https://github.com/skuzzle/restrict-imports-enforcer-rule/issues/118) Print absolute paths in exception messages to make IntelliJ render clickable links -Maven Central coordinates for this release: - maven ```xml de.skuzzle.enforcer restrict-imports-enforcer-rule - 2.5.0-rc-2 + 2.5.0 ``` Gradle plugin DSL ```groovy plugins { - id("de.skuzzle.restrict.imports") version "2.5.0-rc-2" + id("de.skuzzle.restrict.imports") version "2.5.0" } ``` @@ -36,7 +35,7 @@ buildscript { } } dependencies { - classpath("de.skuzzle.enforcer:restrict-imports-gradle-plugin:2.5.0-rc-2") + classpath("de.skuzzle.enforcer:restrict-imports-gradle-plugin:2.5.0") } } @@ -46,5 +45,5 @@ apply(plugin = "de.skuzzle.restrict.imports") Gradle version catalog (Toml) ```toml [plugins] -restrict-imports = { id = "de.skuzzle.restrict.imports", version = "2.5.0-rc-2" } +restrictImports = { id = "de.skuzzle.restrict.imports", version = "2.5.0" } ```