File tree 1 file changed +13
-24
lines changed
1 file changed +13
-24
lines changed Original file line number Diff line number Diff line change 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"
16
13
}
17
14
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
-
26
15
sourceCompatibility = JavaVersion . VERSION_1_8
27
16
targetCompatibility = JavaVersion . VERSION_1_8
28
17
@@ -124,7 +113,7 @@ build.dependsOn jacocoTestReport
124
113
check. dependsOn jacocoTestReport
125
114
126
115
pmd {
127
- toolVersion = ' 5.4.2 '
116
+ toolVersion = ' 6.21.0 '
128
117
ignoreFailures = true
129
118
sourceSets = [sourceSets. main]
130
119
ruleSets = []
You can’t perform that action at this time.
0 commit comments