Skip to content

Commit 54a3bb5

Browse files
committed
Update PMD version
1 parent 57be8a4 commit 54a3bb5

File tree

1 file changed

+13
-24
lines changed

1 file changed

+13
-24
lines changed

build.gradle

+13-24
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,17 @@
1-
buildscript {
2-
repositories {
3-
mavenCentral()
4-
maven {
5-
url "https://plugins.gradle.org/m2/"
6-
}
7-
}
8-
9-
dependencies {
10-
classpath "me.champeau.gradle:jmh-gradle-plugin:0.5.3"
11-
classpath 'ru.vyarus:gradle-animalsniffer-plugin:1.5.3'
12-
classpath "biz.aQute.bnd:biz.aQute.bnd.gradle:5.3.0"
13-
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.17.0'
14-
classpath "gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:0.16.1"
15-
}
1+
plugins {
2+
id("java-library")
3+
id("checkstyle")
4+
id("eclipse")
5+
id("jacoco")
6+
id("maven-publish")
7+
id("pmd")
8+
id("ru.vyarus.animalsniffer") version "1.5.3"
9+
id("me.champeau.gradle.jmh") version "0.5.3"
10+
id("com.github.hierynomus.license") version "0.16.1"
11+
id("biz.aQute.bnd.builder") version "5.3.0"
12+
id("com.vanniktech.maven.publish") version "0.17.0"
1613
}
1714

18-
apply plugin: 'java-library'
19-
apply plugin: 'eclipse'
20-
apply plugin: "me.champeau.gradle.jmh"
21-
apply plugin: 'pmd'
22-
apply plugin: 'jacoco'
23-
apply plugin: 'ru.vyarus.animalsniffer'
24-
apply plugin: "com.github.hierynomus.license"
25-
2615
sourceCompatibility = JavaVersion.VERSION_1_8
2716
targetCompatibility = JavaVersion.VERSION_1_8
2817

@@ -124,7 +113,7 @@ build.dependsOn jacocoTestReport
124113
check.dependsOn jacocoTestReport
125114

126115
pmd {
127-
toolVersion = '5.4.2'
116+
toolVersion = '6.21.0'
128117
ignoreFailures = true
129118
sourceSets = [sourceSets.main]
130119
ruleSets = []

0 commit comments

Comments
 (0)