Skip to content

Commit bf1e22f

Browse files
author
Jenkins
committed
Release 3.0.0
1 parent a5c676f commit bf1e22f

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- This file is auto generated during release from readme/README.md -->
22

3-
[![Maven Central](https://img.shields.io/static/v1?label=MavenCentral&message=3.0.0-rc2&color=blue)](https://search.maven.org/artifact/de.skuzzle.enforcer/restrict-imports-enforcer-rule/3.0.0-rc2/jar)
4-
[![Gradle Plugin Portal](https://img.shields.io/gradle-plugin-portal/v/de.skuzzle.restrictimports?versionSuffix=3.0.0-rc2)](https://plugins.gradle.org/plugin/de.skuzzle.restrictimports/3.0.0-rc2)
3+
[![Maven Central](https://img.shields.io/static/v1?label=MavenCentral&message=3.0.0&color=blue)](https://search.maven.org/artifact/de.skuzzle.enforcer/restrict-imports-enforcer-rule/3.0.0/jar)
4+
[![Gradle Plugin Portal](https://img.shields.io/gradle-plugin-portal/v/de.skuzzle.restrictimports?versionSuffix=3.0.0)](https://plugins.gradle.org/plugin/de.skuzzle.restrictimports/3.0.0)
55
[![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)
66
[![Twitter Follow](https://img.shields.io/twitter/follow/skuzzleOSS.svg?style=social)](https://twitter.com/ProjectPolly)
77

@@ -17,7 +17,7 @@ Supported source files:
1717

1818
Compatibility:
1919
- Works with Java 8+
20-
- Tested against _maven-enforcer-plugin_ versions `3.2.1` and `3.6.0`.
20+
- Tested against _maven-enforcer-plugin_ versions `3.2.1` and `3.6.1`.
2121

2222
[Contributions](CONTRIBUTING.md) are welcome!
2323

@@ -29,12 +29,12 @@ information or have a look at the [Full configuration example](#full-configurati
2929
<plugin>
3030
<groupId>org.apache.maven.plugins</groupId>
3131
<artifactId>maven-enforcer-plugin</artifactId>
32-
<version>3.6.0</version>
32+
<version>3.6.1</version>
3333
<dependencies>
3434
<dependency>
3535
<groupId>de.skuzzle.enforcer</groupId>
3636
<artifactId>restrict-imports-enforcer-rule</artifactId>
37-
<version>3.0.0-rc2</version>
37+
<version>3.0.0</version>
3838
</dependency>
3939
</dependencies>
4040
<executions>
@@ -71,7 +71,7 @@ information or have a look at the [Full configuration example](#full-configurati
7171
### ... with Groovy DSL
7272
```
7373
plugins {
74-
id("de.skuzzle.restrictimports") version("3.0.0-rc2")
74+
id("de.skuzzle.restrictimports") version("3.0.0")
7575
}
7676
7777
restrictImports {
@@ -83,7 +83,7 @@ restrictImports {
8383
### ... with Kotlin DSL
8484
```
8585
plugins {
86-
id("de.skuzzle.restrictimports") version("3.0.0-rc2")
86+
id("de.skuzzle.restrictimports") version("3.0.0")
8787
}
8888
8989
restrictImports {

RELEASE_NOTES.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Maven Central](https://img.shields.io/static/v1?label=MavenCentral&message=3.0.0-rc2&color=blue)](https://search.maven.org/artifact/de.skuzzle.enforcer/restrict-imports-enforcer-rule/3.0.0-rc2/jar) [![Gradle Plugin Portal](https://img.shields.io/gradle-plugin-portal/v/de.skuzzle.restrictimports?versionSuffix=3.0.0-rc2)](https://plugins.gradle.org/plugin/de.skuzzle.restrictimports/3.0.0-rc2)
1+
[![Maven Central](https://img.shields.io/static/v1?label=MavenCentral&message=3.0.0&color=blue)](https://search.maven.org/artifact/de.skuzzle.enforcer/restrict-imports-enforcer-rule/3.0.0/jar) [![Gradle Plugin Portal](https://img.shields.io/gradle-plugin-portal/v/de.skuzzle.restrictimports?versionSuffix=3.0.0)](https://plugins.gradle.org/plugin/de.skuzzle.restrictimports/3.0.0)
22

33
> [!NOTE]
44
> This version removes support for all enforcer-plugin versions prior to 3.2.1
@@ -14,7 +14,7 @@
1414
<dependency>
1515
<groupId>de.skuzzle.enforcer</groupId>
1616
<artifactId>restrict-imports-enforcer-rule</artifactId>
17-
<version>3.0.0-rc2</version>
17+
<version>3.0.0</version>
1818
</dependency>
1919
```
2020
</details>
@@ -25,7 +25,7 @@
2525
Gradle plugin DSL
2626
```groovy
2727
plugins {
28-
id("de.skuzzle.restrictimports") version "3.0.0-rc2"
28+
id("de.skuzzle.restrictimports") version "3.0.0"
2929
}
3030
```
3131

@@ -38,7 +38,7 @@ buildscript {
3838
}
3939
}
4040
dependencies {
41-
classpath("de.skuzzle.enforcer:restrict-imports-gradle-plugin:3.0.0-rc2")
41+
classpath("de.skuzzle.enforcer:restrict-imports-gradle-plugin:3.0.0")
4242
}
4343
}
4444
@@ -48,6 +48,6 @@ apply(plugin = "de.skuzzle.restrictimports")
4848
Gradle version catalog (Toml)
4949
```toml
5050
[plugins]
51-
restrictImports = { id = "de.skuzzle.restrictimports", version = "3.0.0-rc2" }
51+
restrictImports = { id = "de.skuzzle.restrictimports", version = "3.0.0" }
5252
```
5353
</details>

0 commit comments

Comments
 (0)