Skip to content

Commit 7b6af7e

Browse files
committed
update docs
1 parent b5bbcec commit 7b6af7e

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
### 4.9.0 (2023-02-18)
12
* Gradle 8 support (#77)
23
* Update checkstyle 10.3.1 -> 10.6.0
34
* Update pmd 6.47 -> 6.54 (java 19 support)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ NOTE: when updating plugin version in your project don't forget to call `clean`
4646

4747
```groovy
4848
plugins {
49-
id 'ru.vyarus.quality' version '4.8.0'
49+
id 'ru.vyarus.quality' version '4.9.0'
5050
}
5151
```
5252

@@ -59,7 +59,7 @@ buildscript {
5959
gradlePluginPortal()
6060
}
6161
dependencies {
62-
classpath 'ru.vyarus:gradle-quality-plugin:4.8.0'
62+
classpath 'ru.vyarus:gradle-quality-plugin:4.9.0'
6363
}
6464
}
6565
apply plugin: 'ru.vyarus.quality'
@@ -73,7 +73,7 @@ Plugin compiled for java 8, compatible with java 11
7373

7474
Gradle | Version
7575
--------|-------
76-
5.6-7 | 4.8.0
76+
5.6-8 | 4.9.0
7777
5.1 | [4.2.2](http://xvik.github.io/gradle-quality-plugin/4.2.2)
7878
4.1 | [3.4.0](http://xvik.github.io/gradle-quality-plugin/3.4.0)
7979
older | [2.4.0](http://xvik.github.io/gradle-quality-plugin/2.4.0)

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ext {
2424
animalsnifferVersion = '1.7.0'
2525
cpdVersion = '3.3'
2626
spotbugsPluginVersion = '4.8.0'
27-
docVersion = '4.8.0'
27+
docVersion = '4.9.0'
2828
}
2929

3030
repositories { mavenLocal(); mavenCentral(); gradlePluginPortal() }

src/doc/docs/about/compatibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Plugin compiled for java 8, compatible with java 11
44

55
Gradle | Version
66
--------|-------
7-
5.6-7 | 4.8.0
7+
5.6-8 | 4.9.0
88
5.1 | [4.2.2](http://xvik.github.io/gradle-quality-plugin/4.2.2)
99
4.1 | [3.4.0](http://xvik.github.io/gradle-quality-plugin/3.4.0)
1010
older | [2.4.0](http://xvik.github.io/gradle-quality-plugin/2.4.0)

src/doc/docs/about/history.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
### [4.9.0](http://xvik.github.io/gradle-quality-plugin/4.9.0) (2023-02-18)
2+
* Gradle 8 support (#77)
3+
* Update checkstyle 10.3.1 -> 10.6.0
4+
* Update pmd 6.47 -> 6.54 (java 19 support)
5+
* Update pmd config:
6+
- Disable [TestClassWithoutTestCases](https://pmd.sourceforge.io/pmd-6.54.0/pmd_rules_java_errorprone.html#testclasswithouttestcases)
7+
- Rename excluded rule [BeanMembersShouldSerialize](https://pmd.sourceforge.io/pmd-6.54.0/pmd_rules_java_errorprone.html#beanmembersshouldserialize) to NonSerializableClass
8+
* Update spotbugs 4.7.1 -> 4.7.3
9+
* Update codenarc 3.1.0 -> 3.2.0
10+
* Fix codenarc for groovy4 support: change to x.x-groovy-4.0 version instead of codenarc-groovy4 artifact
11+
112
### [4.8.0](http://xvik.github.io/gradle-quality-plugin/4.8.0) (2022-07-02)
213
* Update checkstyle 9.1 -> 10.3.1
314
IMPORTANT: Checkstyle 10 requires java 11, but plugin will automatically switch to

0 commit comments

Comments
 (0)